Skip to content

v1.4.0

Compare
Choose a tag to compare
@jinwoo-kim-nhn jinwoo-kim-nhn released this 17 May 02:32
· 47 commits to master since this release

ADD

  • The format option

    • Can change the time display format to hh:mm or h:m.
     var tpSelectbox = new tui.TimePicker('#timepicker-selectbox', {
             format: 'hh:mm', // default 'h:m'
              ...
      });
    
  • The disabledHours option

    • If you put the time in the disabledHours array, it will be displayed as disabled on the screen.
     var tpSelectbox = new tui.TimePicker('#timepicker-selectbox', {
              disabledHours: [1, 2, 14],
              ...
      });