autoAdjust Boolean (default: true)

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.

Example - prevent automatic value adjustments

<h3>Try to change the year to an earlier one and then focus out the input.</h3>
<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
    min: new Date(),
    value: new Date(),
    dateInput: true,
    autoAdjust: false
});
</script>
In this article