New to Telerik UI for ASP.NET Core? Download free 30-day trial

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. This enables you to be in the driver's seat. When it comes to dictating whether the selection behavior will be performed in a bi-directional or one-directional manner.

    @(Html.Kendo().MultiViewCalendar()
            .Name("multiViewCalendar")
            .Selectable("range")
            .AllowReverse(true)
    )
        <kendo-multiviewcalendar name="multiViewCalendar"
                                 selectable="range"
                                 allow-reverse="true">
        </kendo-multiviewcalendar>

When configuring range selection, set the ShowOtherMonthDays() configuration to false.

See Also

In this article