adaptiveTitleString
Allows customization of the title's text in the adaptive view of the component.
Example
<input id="combobox" /> <script> $("#combobox").kendoComboBox({ adaptiveMode: "auto", adaptiveTitle: "Select an Item", dataSource: ["Item1", "Item2", "Item3"] }); </script> In this article