adaptiveModeString(default: "none")
Specifies the adaptive rendering of the component. The supported values are: none (default), auto.
Example
<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
dataSource: ["Option 1", "Option 2", "Option 3"],
adaptiveMode: "auto"
});
</script>
In this article