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

MinLength

configuration

The minimum number of characters the user must type before a search is performed. Set to a higher value if the search could match a lot of items.

Widget will initiate a request when input value is cleared. If you would like to prevent this behavior please check the filtering event for more details.

minLength

Number

Default: 1

<input id="dropdowntree"/>

<script>
$("#dropdowntree").kendoDropDownTree({
  dataSource: [{ text: "item1", value: 1 }, { text: "item2", value: 2 }],
  filter: "startswith",
  minLength: 3
});
</script>
Not finding the help you need?
Contact Support