messages.applyButtons.applyGroupingString
Defines the text of the "Group" apply button that is rendered in the adaptive mode of the group toolbar tool.
Example
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" },
{ command: ["edit", "destroy"] }
],
dataSource: [
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 }
],
adaptiveMode: "auto",
sortable: true,
groupable: true,
filterable: true,
toolbar: ["group"],
messages: {
applyButtons: {
applyGrouping: "Done grouping",
}
}
});
</script>
In this article