showOtherMonthDays Boolean(default: true)

When this configuration is enabled, the calendar will render days from the previous and next months in the current view.

The showOtherMonthDays configuration is not compatible with the range selection. It is advised that this property is set to false when selectable is set to range.

Example - Hide dates from the other months

<div id="calendar"></div>
<script>
    $("#calendar").kendoCalendar({
        showOtherMonthDays: false
    });
</script>
In this article