change

Fires when selection is changed.

Example - subscribe to the "change" event during initialization

<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>

Example - subscribe to the "change" event after initialization

<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>
In this article