messages.applyButtonsObject
Defines the text of the apply buttons that are shown within the Grid Toolbar tools. Used primarily for localization.
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 }
],
toolbar: ["columnChooser"],
sortable: true,
groupable: true,
filterable: true,
messages: {
applyButtons: {
columnChooserApply: "Apply columns",
}
}
});
</script>
In this article