messages.applyButtons.applySortingString
Defines the text of the "Sort" apply button that is rendered in the adaptive mode of the 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 }
],
adaptiveMode: "auto",
sortable: true,
groupable: true,
filterable: true,
toolbar: ["sort"],
messages: {
applyButtons: {
applySorting: "Done sorting",
}
}
});
</script>
In this article