wijmo.grid.wijgrid Namespace > options type : columnResized Event |
Javascript (Usage) | |
---|---|
$(function () { // Set columnResized event handler function $(".selector").wijgrid({ columnResized : function (e, args) { } }); }); |
Javascript (Specification) | |
---|---|
columnResized = function ( e : Object, args : IColumnResizedEventArgs ) { }; |
// Supply a callback function to handle the columnGrouped event: $("#element").wijgrid({ columnResized: function (e, args) { alert("The '" + args.column.headerText + "' has been resized"); } });