view

Gets an instance of the current view used by the calendar.

Returns

Object The instance of the current view used by the calendar.

Example

<div id="calendar"></div>
<script>
    $("#calendar").kendoCalendar();

    var calendar = $("#calendar").data("kendoCalendar");

    var view = calendar.view();
</script>
In this article