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