messages.groupingHeaderLabelString
(default: "grid grouping header")
The text that will be used for the aria-lable
attribute of the grouping header of the Grid.
Example - configure grouping header label message
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }, { field: "age" }],
dataSource: [{ name: "Jane Doe", age: 30 }],
groupable: true,
messages: {
groupingHeaderLabel: "Drag column headers here to group by column"
}
});
</script>
In this article