Wijmo UI for the Web
columnUngrouped Field
wijmo.grid Namespace > IDetailSettings Interface : columnUngrouped Field

The columnUngrouped event handler is called when a column has been removed from the group area.

Syntax
var instance; // Type: wijmo.grid.IDetailSettings;
var value; // Type: any
value = instance.columnUngrouped;
var columnUngrouped : any;
Example
// Supply a callback function to handle the columnGrouped event:
$("#element").wijgrid({
    columnUngrouped: function (e, args) {
        alert("The '" + args.column.headerText + "' has been ungrouped");
    }
});
Remarks
You can bind to the event either by type or by name. Bind to the event by name: $("#element").wijgrid({ columnUngrouped: function (e, args) { // some code here }}); Bind to the event by type: $("#element").bind("wijgridcolumnungrouped", function (e, args) { // some code here });
See Also

Reference

IDetailSettings Interface