Century Cells Format
The Telerik UI for ASP.NET MVC 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)
)