adaptiveModeString(default: "none")

Specifies the adaptive rendering of the component. The supported values are: none (default), auto.

Example

<input id="multicolumncombobox" />
<script>
$("#multicolumncombobox").kendoMultiColumnComboBox({
    adaptiveMode: "auto",
    dataTextField: "text",
    dataValueField: "value",
    dataSource: [
        { text: "Apples", value: "1" },
        { text: "Oranges", value: "2" }
    ],
    columns: [
        { field: "text", title: "Text" },
        { field: "value", title: "Value" }
    ]
});
</script>
In this article
adaptiveMode
Not finding the help you need?
Contact Support