New to Kendo UI for jQuery? Download free 30-day trial

Other Month Days

Starting with Kendo UI R2 2024, the MultiViewCalendar exposes the showOtherMonthDays option, which allows you to control whether the days from the previous or next month will be displayed.

    <div id="multiviewcalendar"></div>
    <script>
        $("#multiviewcalendar").kendoMultiViewCalendar({
            showOtherMonthDays:false
        });
    </script>

When range selection is configured, the showOtherMonthDays needs to be set to false.

See Also

In this article