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 filter value.

<input id="combobox" />
<script>
$("#combobox").kendoComboBox({
  dataSource: [
    { id: 1, name: "Apples" },
    { id: 2, name: "Oranges" }
  ],
  dataTextField: "name",
  dataValueField: "id",
  index: 1
});

var combobox = $("#combobox").data("kendoComboBox");

combobox.search("App");
</script>
Not finding the help you need?
Contact Support