adaptiveSubtitleString
Allows customization of the subtitle's text in the adaptive view of the component.
Example
<div id="filtermenu"></div>
<script>
$("#filtermenu").kendoFilterMenu({
adaptiveSubtitle: "Select filtering options",
dataSource: [
{ name: "John", age: 25 },
{ name: "Jane", age: 30 }
]
});
</script>
In this article