messages.clearButtonsObject

Defines the text of the clear 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: ["sort", "filter", "group"],
  sortable: true,
  groupable: true,
  filterable: true,
  messages: {
    clearButtons: {
      clearFiltering: "Remove filters",
      clearSorting: "Unsort all",
      clearGrouping: "Ungroup all",
    }
  }
});
</script>