Wijmo UI for the Web
showGroupArea Option
wijmo.grid.wijgrid Namespace > options type : showGroupArea Option

Default value: false

A value indicating whether group area is visible. Group area is used to display headers of groupped columns. User can drag columns from/to group area by dragging column headers with mouse, if allowColMoving option is on.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijgrid("option", "showGroupArea");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijgrid("option", "showGroupArea", newValue);
        
});
var showGroupArea : boolean;
Example
// Set showGroupArea to true to display the group area.
$("#element").wijgrid({ showGroupArea: true });
See Also

Reference

options type
allowColMoving Option
groupAreaCaption Option
groupIndent Option
wijgrid jQuery Widget