messages.toolbarLabelString
(default: "grid toolbar")
The text that will be used for the aria-lable
attribute of the ToolBar of the Grid.
Example - configure toolbar label message
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }, { field: "age" }],
dataSource: [{ name: "Jane Doe", age: 30 }],
toolbar: ["create", "excel"],
messages: {
toolbarLabel: "Grid action toolbar"
}
});
</script>
In this article