minuteStep

the step of the time selector

number minuteStep;

Example

webix.ui({
    view:"calendar", minuteStep:10, timepicker:true
});


Default value:

5
Details

The value of the minuteStep property must be:

  • greater or equal to 5,
  • a divider of 60 (60 mod step == 0)
Back to top