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

Search

methods

Searches the data source for the provided value and displays any matches as suggestions.

Parameters:wordString

The value to search for. All matches are displayed in the suggestion popup.

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  dataSource: [ "Apples", "Oranges" ]
});
var autocomplete = $("#autocomplete").data("kendoAutoComplete");
autocomplete.search("A"); // Displays "Apples" in the suggestion popup
</script>
Not finding the help you need?
Contact Support