showOtherMonthDaysBoolean(default: true)
When this configuration is enabled, the calendar will render days from the previous and next months in the current view.
The
showOtherMonthDaysconfiguration is not compatible with therangeselection. It is advised that this property is set to false whenselectableis set to range.
Example - Hide dates from the other months
<div id="calendar"></div>
<script>
$("#calendar").kendoCalendar({
showOtherMonthDays: false
});
</script>
In this article