current
Gets currently focused date.
Returns
Date
The current focused date shown in the multiViewCalendar.
Example
<div id="multiViewCalendar"></div>
<script>
$("#multiViewCalendar").kendoMultiViewCalendar();
var multiViewCalendar = $("#multiViewCalendar").data("kendoMultiViewCalendar");
var current = multiViewCalendar.current(); //will be today, because value is `null`
</script>