current

Gets currently focused date.

Returns

Date The current focused date shown in the calendar.

Example

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

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

    var current = calendar.current(); //will be today, because value is `null`
</script>
In this article