wijmo.grid.wijgrid Namespace > options type : sorting Event |
Javascript (Usage) | |
---|---|
$(function () { // Set sorting event handler function $(".selector").wijgrid({ sorting : function (e, args) { } }); }); |
Javascript (Specification) | |
---|---|
sorting = function ( e : Object, args : ISortingEventArgs ) { }; |
// Preventing user from sorting the "ID" column. $("#element").wijgrid({ sorting: function (e, args) { return !(args.column.headerText === "ID"); } });