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

Enable

methods

Enables or disables the widget.

Parameters:enableBoolean

If set to true the widget will be enabled. If set to false the widget will be disabled.

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  enable: false
});
var autocomplete = $("#autocomplete").data("kendoAutoComplete");
autocomplete.enable(true);
</script>
<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete();
var autocomplete = $("#autocomplete").data("kendoAutoComplete");
autocomplete.enable(false);
</script>
Not finding the help you need?
Contact Support