Value
methodsGets or sets the value of the widget.
Important: This method does not trigger change event.
This can affect MVVM value binding. The model bound to the widget will not be updated.
You can overcome this behavior trigerring the change event manually using trigger("change") method.
<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete();
var autocomplete = $("#autocomplete").data("kendoAutoComplete");
autocomplete.value("new value");
autocomplete.trigger("change");
</script>
Parameters:valueString
Returns:String
The value to set.
the value of the widget.