New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Century Cells Format
Updated over 6 months ago
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.
Razor
@(Html.Kendo().MultiViewCalendar()
.Name("longMultiViewCalendar")
.Start(CalendarView.Century)
.CenturyCellsFormat(CenturyCellsFormats.Long)
)