adaptiveSubtitleString

Allows customization of the subtitle's text in the adaptive view of the component.

Example

<input id="multicolumncombobox" />
<script>
$("#multicolumncombobox").kendoMultiColumnComboBox({
    adaptiveMode: "auto",
    adaptiveTitle: "Select Item",
    adaptiveSubtitle: "Choose from the list below",
    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
adaptiveSubtitle
Not finding the help you need?
Contact Support