autoCorrectParts Boolean(default: true)

Sets a value that indicates whether to automatically correct the segment when out of range. In order to work, dateInput prop should be set to true.

Example - sets the autoCorrectParts

<input id="datepicker" />
<script>
$("#datepicker").kendoDatePicker({
    dateInput: true,
    autoCorrectParts: true
});
</script>
In this article