adaptiveModeString
(default: "none")
Specifies the adaptive rendering of the component. The supported values are: none
(default), auto
.
Example
<input id="combobox" />
<script>
$("#combobox").kendoComboBox({
adaptiveMode: "auto",
dataSource: ["Item1", "Item2", "Item3"]
});
</script>
In this article