Wijmo UI for the Web
columnGrouped Field
wijmo.grid Namespace > IWijgridOptions Interface : columnGrouped Field

The columnGrouped event handler is a function that is called when a column has been dropped into the group area.

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

Reference

IWijgridOptions Interface