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