var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.columnUngrouping;
var columnUngrouping : any;
The columnUngrouping event handler is called when a column has been removed from the group area but before the wjgrid handles the operation. This event is cancellable.
var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.columnUngrouping;
var columnUngrouping : any;
// Preventing user from ungrouping the "UnitPrice" column. $("#element").wijgrid({ columnUngrouping: function (e, args) { return !(args.column.headerText == "UnitPrice"); } });