adaptiveSubtitleString
Allows customization of the subtitle's text in the adaptive view of the component.
Example
<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
dataSource: ["Product A", "Product B", "Product C"],
adaptiveMode: "auto",
adaptiveTitle: "Select Product",
adaptiveSubtitle: "Choose your preferred option"
});
</script>
In this article