messages.applyButtons.columnChooserApplyString

Defines the text of the "ColumnChooser" apply button that is rendered in columnChooser 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 }
  ],
  sortable: true,
  groupable: true,
  filterable: true,
  toolbar: ["columnChooser"],
  messages: {
    applyButtons: {
      columnChooserApply: "Done",
    }
  }
});
</script>