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