messages.clearButtons.clearSortingString
Defines the text of the "Sort" clear all button that is rendered in sort 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: ["sort", "filter", "group"],
messages: {
clearButtons: {
clearSorting: "Unsort all",
}
}
});
</script>
In this article