filterTitle String
When filtering is enabled, allows custom title to be defined for the filter input element.
Example - set the filter
<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
dataSource: ["Chai", "Chang", "Tofu"],
filter: "contains",
filterTitle: "custom title"
});
</script>