v1.4.0
ADD
-
The
format
option- Can change the time display format to
hh:mm
orh:m
.
var tpSelectbox = new tui.TimePicker('#timepicker-selectbox', { format: 'hh:mm', // default 'h:m' ... });
- Can change the time display format to
-
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], ... });