New to Kendo UI for jQueryStart a free 30-day trial

Interval

configuration

Specifies the interval between values in the popup list.

  • When the componentType is set to classic, the interval is specified in minutes (numeric values).
  • When the componentType is set to modern, the interval is specified as an object of hours, minutes and seconds.

interval

Number|Object

Default: "30" or "0" in modern picker

<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
    interval: 15
});
</script>
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
    componentType: "modern",
    interval: {
        hour: 2,
        minute: 10,
        second: 15
    }
});
</script>
Not finding the help you need?
Contact Support