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

Change

events

Fired when the value of the widget is changed by the user.

The event handler function context (available through the keyword this) will be set to the widget instance.

Important: The event is not fired when the value of the widget is changed from code.

Event Data

e.sender kendo.ui.AutoComplete

The widget instance which fired the event.

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  change: function(e) {
    var value = this.value();
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log(value);
    // Use the value of the widget
  }
});
</script>
<input id="autocomplete" />
<script>
function autocomplete_change(e) {
  var value = this.value();
  // Use the value of the widget
}
$("#autocomplete").kendoAutoComplete();
var autocomplete = $("#autocomplete").data("kendoAutoComplete");
autocomplete.bind("change", autocomplete_change);
</script>
Not finding the help you need?
Contact Support