adaptiveTitleString
Allows customization of the title's text in the adaptive view of the component.
Example
<div id="filtermenu"></div>
<script>
$("#filtermenu").kendoFilterMenu({
adaptiveTitle: "Custom Filter Title",
dataSource: [
{ name: "John", age: 25 },
{ name: "Jane", age: 30 }
]
});
</script>
In this article