$(function () { // Set columnGrouped event handler function $(".selector").wijgrid({ columnGrouped : function (e, args) { } }); });
Parameters
- e
- The jQuery.Event object.
- args
- The data with this event.
$(function () { // Set columnGrouped event handler function $(".selector").wijgrid({ columnGrouped : function (e, args) { } }); });
// Supply a callback function to handle the columnGrouped event: $("#element").wijgrid({ columnGrouped: function (e, args) { alert("The '" + args.drag.headerText "' column has been grouped"); } });