Today I came across this need and found out that this event is now present in version 2016 R3 (2016.3.914).
Usage example:
<div id="grid"></div> <script> $("#grid").kendoGrid({ columns: [ { field: "name" }, { field: "age" } ], dataSource: { data: [ { id: 1, name: "Jane Doe", age: 30 }, { id: 2, name: "John Doe", age: 33 } ], schema: { model: { id: "id" } } }, sortable: true, sort: function(e) { console.log(e.sort.field); console.log(e.sort.dir); } }); </script>
See: http://docs.telerik.com/kendo-ui/api/javascript/ui/grid#events-sort
source share