sortable.allowUnsort Boolean
(default: true)
If set to true
the user can get the grid in unsorted state by clicking the sorted column header.
Example - do not allow unsorting
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" }
],
dataSource: [
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 }
],
sortable: {
allowUnsort: false
}
});
</script>