fires before data sorting is started
| ind | number | the index of a column |
| type | string | the sorting type ("str","int","date") |
| direction | string | the direction of sorting ("asc","des") |
Available only in PRO Edition
grid.attachEvent("onBeforeSorting", function(ind,type,direction){
//your code here
return false;
});
Back to top