jQuery.wijmo.c1gridview Namespace > options type : columnUngrouping Event |
var options; // Type: jQuery.wijmo.c1gridview.options // Create a new c1gridview widget $(".selector").c1gridview(options); // Get a previously created c1gridview widget instance var widgetInstance; // Type: jQuery.wijmo.c1gridview widgetInstance = $(".selector").data("wijmo-c1gridview"); // Set columnUngrouping event handler function widgetInstance.option("columnUngrouping", function (e, args) { } );
// Preventing user from ungrouping the "UnitPrice" column. $("#element").wijgrid({ columnUngrouping: function (e, args) { return !(args.column.headerText == "UnitPrice"); } });