view

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

Returns

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

Example

<div id="multiViewCalendar"></div>
<script>
    $("#multiViewCalendar").kendoMultiViewCalendar();

    var multiViewCalendar = $("#multiViewCalendar").data("kendoMultiViewCalendar");

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