New to Telerik UI for ASP.NET Core? Download free 30-day trial

Show Other Month Days

The Telerik UI for ASP.NET Core MultiViewCalendar allows you to explicitly render days from the previous and next months in the current view.

The ShowOtherDays() configuration is not compatible with the range selection. It is advised that this property is set to false when the Selectable() configuration is set to range.

        @(Html.Kendo().MultiViewCalendar()
            .Name("multiViewCalendar")
            .WeekNumber(false)
            .ShowOtherMonthDays(false)
        )
         <kendo-multiviewcalendar name="multiViewCalendar"
                                 week-number="false"
                                 show-other-month-days="true">
        </kendo-multiviewcalendar>

See Also

In this article