Start View and Navigation Depth
The MultiViewCalendar enables you to set the initial view it renders and define the navigation depth of the views.
To define the initially rendered view, use the start
option. To control the navigation depth, use 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 Calendar that allows the user to select a month.
<div id="multiViewCalendar"></div>
<script>
$("#multiViewCalendar").kendoMultiViewCalendar({
start: "year",
depth: "year"
});
</script>