New to Kendo UI for jQuery? Start a free 30-day trial
Automatic Correction
Updated over 6 months ago
Starting with Kendo UI R3 2024, the DatePicker component exposes an autoAdjust feature which provides control over the autocorrect functionality. By default, when you have min and max dates configured and the dateInput is set to true, the component will autocorrect the user input if it is not within the specified range. The autocorrected value will be either the min or the max value you have set for the component depending on which the invalid date is closer to.
In order to disable the autocorrect, you can now set the autoAdjust option to false.
<input id="datepicker" />
<script>
$(document).ready(function(){
$("#datepicker").kendoDatePicker({
min: new Date("01/01/2024"),
max: new Date("12/31/2024"),
dateInput:true,
autoAdjust: false
});
});
</script>