Documentation

onAfterSort

fires after sorting dataset

void onAfterSort(string|function by,string dir,string|function as){ ... };

Parameters

bystring|functiontemplate of sort-by field
dirstringdirection of sorting
asstring|function type of sorting

Example

some.attachEvent("onAfterSort", function(by, dir, as){
    //... some code here ... 
});

See also

Back to top