$(function () { // Set columnGrouping event handler function $(".selector").wijgrid({ columnGrouping : function (e, args) { } }); });
Parameters
- e
- The jQuery.Event object.
- args
- The data with this event.
$(function () { // Set columnGrouping event handler function $(".selector").wijgrid({ columnGrouping : function (e, args) { } }); });
// Preventing user from grouping the "UnitPrice" column. $("#element").wijgrid({ columnGrouping: function (e, args) { return !(args.drag.headerText == "UnitPrice"); } });