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

Parameters

word String

The filter value.

Example - search the widget

<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>
In this article