startString(default: "month")
Specifies the start view. The following settings are available for the start value:
"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 from the century.
Example - specify the initial view, which calendar renders
<div id="calendar"></div>
<script>
$("#calendar").kendoCalendar({
start: "year"
});
</script>
In this article