adaptiveTitleString
Allows customization of the title's text in the adaptive view of the component.
Example
<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
dataSource: ["Small", "Medium", "Large"],
adaptiveMode: "auto",
adaptiveTitle: "Select Size"
});
</script>
In this article