value Date(default: null)

Specifies the selected date.

Example - specify the selected value of the widget

<div id="multiViewCalendar"></div>
<script>
    $("#multiViewCalendar").kendoMultiViewCalendar({
        value: new Date(2012, 0, 1)
    });
</script>
In this article