change

Fires when the selected date is changed

Event Data

e.sender kendo.ui.DateInput

The widget instance which fired the event.

Example - subscribe to the "change" event during initialization

<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput({
    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 dateinput
    }
});
</script>

Example - subscribe to the "change" event after initialization

<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput();

var dateinput = $("#dateinput").data("kendoDateInput");

dateinput.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 dateinput
});
</script>
In this article