adaptiveSubtitleString
Allows customization of the subtitle's text in the adaptive view of the component.
Example
<input id="combobox" />
<script>
$("#combobox").kendoComboBox({
adaptiveMode: "auto",
adaptiveTitle: "Choose Option",
adaptiveSubtitle: "Please select from the list",
dataSource: ["Option1", "Option2", "Option3"]
});
</script>
In this article