jQuery.wijmo.wijgrid Namespace > options type : columnResized Event |
Javascript (Usage) | |
---|---|
var instance; // Type: options instance.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"); } });