Reverse Selection
Starting with Kendo UI R2 2024, the MultiViewCalendar provides an allowReverse
selection. It allows you to pick an end date which is before the selected start date when the selectable
option is set to range
.
<div id="multiviewcalendar"></div>
<script>
$("#multiviewcalendar").kendoMultiViewCalendar({
selectable: "range",
allowReverse: true,
showOtherMonthDays:false
});
</script>
When range selection is configured, the
showOtherMonthDays
needs to be set tofalse
.