Century Cells Format
The Telerik UI for ASP.NET Core Calendar allows you to specify the formatting behavior of the Century
Calendar 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().Calendar()
.Name("calendarLong")
.Start(CalendarView.Century)
.CenturyCellsFormat(CenturyCellsFormats.Long)
)
<kendo-calendar name="calendarLong"
start="CalendarView.Century"
century-cells-format="CenturyCellsFormats.Long">
</kendo-calendar>