New to Kendo UI for jQueryStart a free 30-day trial

Allows customization of names of the views used in the title attribute of the Calendar title in the header. The label is also a button allowing navigation to parent view.

<div id="calendar"></div>
<script>
$("#calendar").kendoCalendar({
    "weekNumber": true,
    "messages": {
        "parentViews": {
            month: "Go to year view",
            year: "Go to decade view",
            decade: "Go to century view"
        }
    }
 })
</script>

Allows customization of parent view name used in the title attribute of the Calendar title when in Decade view.

Default: "century view"

<div id="calendar"></div>
<script>
$("#calendar").kendoCalendar({
    "weekNumber": true,
    "messages": {
        "parentViews": {
            decade: "parent century"
        }
    }
 })
</script>

Allows customization of parent view name used in the title attribute of the Calendar title when in Month view.

Default: "year view"

<div id="calendar"></div>
<script>
$("#calendar").kendoCalendar({
    "weekNumber": true,
    "messages": {
        "parentViews": {
            month: "parent year"
        }
    }
 })
</script>

Allows customization of parent view name used in the title attribute of the Calendar title when in Year view.

Default: "decade view"

<div id="calendar"></div>
<script>
$("#calendar").kendoCalendar({
    "weekNumber": true,
    "messages": {
        "parentViews": {
            year: "parent decade"
        }
    }
 })
</script>