filterLabel String

When filtering is enabled, allows aria-label to be defined for the filter input element.

Example - set the filter

<input id="ddt" />
<script>
$("#ddt").kendoDropDownTree({
  dataSource: ["Chai", "Chang", "Tofu"],
  filter: "contains",
  filterLabel: "custom title"
});
</script>
In this article