Calendar TagHelper Overview
The Telerik UI Calendar TagHelper for ASP.NET Core is a server-side wrapper for the Kendo UI Calendar widget.
The Calendar renders a graphical calendar that provides navigation and selection functionalities. To define the first rendered view, use the start
option. To control the navigation depth, set the depth
option. The Calendar provides the month
, year
, decade
, and century
predefined views.
The Calendar is part of Telerik UI for ASP.NET Core, a
professional grade UI library with 100+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
Initializing the Calendar
The following example demonstrates how to define the Calendar by using the Calendar TagHelper.
<kendo-calendar name="calendar" >
</kendo-calendar>
@(Html.Kendo().Calendar()
.Name("calendar"))