Active View
To define the first view which the MultiViewCalendar initially renders, use the Start
option.
To control the navigation depth, set the Depth
option.
The MultiViewCalendar supports the following predefined views:
-
month
—Shows the days of the month. -
year
—Shows the months of the year. -
decade
—Shows the years of the decade. -
century
—Shows the decades of the century.
The following example demonstrates how to create a MultiViewCalendar that allows users to select a month.
@(Html.Kendo().MultiViewCalendar()
.Name("MultiViewCalendar")
.Start(CalendarView.Year)
.Depth(CalendarView.Year)
)