New to Kendo UI for jQuery? Start a free 30-day trial
Interval
The Kendo UI for jQuery DateTimePicker allows you to specify the time interval between the values in the time view of the popup list.
Depending on the [Component Type](% slug componenttypes_timepicker %), you can set the interval in two distinct ways.
Setting the Interval in Classic Render Mode
When the componentType
configuration is set to classic
, the interval is specified in minutes (numeric values).
<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
interval: 15
});
</script>
When the
componentType
is set toclassic
, the interval does not accept an object of hours, minutes, and seconds.
Setting the Interval in Modern Render Mode
When the componentType
configuration is set to modern
, the interval is specified as an object of hours, minutes, and seconds.
<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
componentType: "modern",
interval: {
hour: 2,
minute: 10,
second: 15
}
});
</script>
When the
componentType
is set tomodern
, the interval does not accept a single numerical value.