New to Kendo UI for jQuery? Start a free 30-day trial

Change

events

Fires when selection is changed.

<div id="multiViewCalendar"></div>
<script>
    $("#multiViewCalendar").kendoMultiViewCalendar({
        change: function() {
            var value = this.value();
/* The result can be observed in the DevTools(F12) console of the browser. */
            console.log(value); //value is the selected date in the multiViewCalendar
        }
    });
</script>
<div id="multiViewCalendar"></div>
<script>
    $("#multiViewCalendar").kendoMultiViewCalendar();

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

    multiViewCalendar.bind("change", function() {
        var value = this.value();
/* The result can be observed in the DevTools(F12) console of the browser. */
        console.log(value); //value is the selected date in the multiViewCalendar
    });
</script>
Not finding the help you need?
Contact Support