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