jQuery.wijmo.wijgrid Namespace > options type : sorted Event |
Javascript (Usage) | |
---|---|
var instance; // Type: options instance.sorted = function(e, args) { }; |
Javascript (Specification) | |
---|---|
sorted = function ( e : Object, args : ISortedEventArgs ) { }; |
$("#element").wijgrid({ sorted: function (e, args) { // some code here } });
$("#element").bind("wijgridsorted", function (e, args) { // some code here });
You can bind to the event either by type or by name. See examples.