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