adaptiveSubtitleString
Allows customization of the subtitle's text in the adaptive view of the component.
Example
<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
dataSource: ["Apple", "Orange", "Banana"],
adaptiveMode: "auto",
adaptiveTitle: "Select Fruit",
adaptiveSubtitle: "Choose from available options"
});
</script>
In this article