adaptiveSubtitleString
Allows customization of the subtitle's text in the adaptive view of the component.
Example
<input id="dropdowntree" />
<script>
$("#dropdowntree").kendoDropDownTree({
adaptiveMode: "auto",
adaptiveSubtitle: "Choose from options below",
dataSource: [
{ text: "Item 1", value: 1 },
{ text: "Item 2", value: 2 }
]
});
</script>
In this article