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

Filter

configuration

The filtering method used to determine the suggestions for the current value. The default filter is "startswith" - all data items which begin with the current widget value are displayed in the suggestion popup. The supported filter values are startswith, endswith and contains.

filter

String

Default: "startswith"

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  filter: "contains",
  dataSource: {
    data: ["One", "Two"]
  }
});
</script>
Not finding the help you need?
Contact Support