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

Century Cells Format

The Telerik UI for ASP.NET Core MultiViewCalendar allows you to specify the formatting behavior of the Century MultiViewCalendar View's cells. The component exposes the following options:

  • "Long"—The cells will display a decade range 2000-2009, 2010-2019.
  • "Short"—The cells will display just the starting year of the decade 2000, 2010.
        @(Html.Kendo().MultiViewCalendar()
            .Name("longMultiViewCalendar")
            .Start(CalendarView.Century)
            .CenturyCellsFormat(CenturyCellsFormats.Long)
        )
        <kendo-multiviewcalendar name="longMultiViewCalendar"
                                 start="CalendarView.Century"
                                 century-cells-format="CenturyCellsFormats.Long">
        </kendo-multiviewcalendar>

See Also

In this article