New to Kendo UI for jQueryStart a free 30-day trial

Change

events

Fires when the value is changed

Event Data

e.sender kendo.ui.MaskedTextBox

The widget instance which fired the event.

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

var maskedtextbox = $("#maskedtextbox").data("kendoMaskedTextBox");

maskedtextbox.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 maskedtextbox
});
</script>
Not finding the help you need?
Contact Support