Wijmo UI for the Web
columnUngrouped Event
wijmo.grid.wijgrid Namespace > options type : columnUngrouped Event
The jQuery.Event object.
The data with this event.
The columnUngrouped event handler is called when a column has been removed from the group area.
Syntax
$(function () {
    // Set columnUngrouped event handler function
    $(".selector").wijgrid({
        columnUngrouped : function (e, args) {
     
        }
    });
});
columnUngrouped = function ( 
   e : Object,
   args : IColumnUngroupedEventArgs
) { };

Parameters

e
The jQuery.Event object.
args
The data with this event.
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

options type
wijgrid jQuery Widget