Automatic Correction
Starting with Kendo UI R3 2024, the DateRangePicker component provides an autoAdjust
feature which provides control over the autocorrect functionality. By default, when you have min
and max
dates configured, the component will autocorrect the user input if it is not within the specified range. If the component has a valid value before the autocorrect occurs, the autocorrected value will be the previous valid date of the DateRangePicker. If the component doesn't have a value when you enter an invalid date, the placeholder will be displayed.
In order to disable the autocorrect, you can now set the autoAdjust
option to false
.
<div id="daterangepicker" title="daterangepicker"></div>
<script>
$(document).ready(function(){
$("#daterangepicker").kendoDateRangePicker({
min: new Date("01/01/2024"),
max: new Date("12/31/2024"),
autoAdjust: false
});
});
</script>