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

AutoAdjust

configuration

If this property is enabled and you have configured min and/or max values, and the user enters a value that falls out of that range, the value will automatically be set to either the minimum or maximum allowed value. This property has effect only when the dateInput of the component is enabled.

autoAdjust

Boolean

Default: true

<h3>Try to change the hour to an earlier one and then focus out the input.</h3>
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
    min: new Date(2000, 0, 1, 11, 0, 0),
    value: new Date(2000, 0, 1, 11, 0, 0),
    dateInput: true,
    autoAdjust: false
});
</script>
Not finding the help you need?
Contact Support