ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / showGroupArea Option
In This Topic
    showGroupArea Option
    In This Topic
    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
    // Get value
    var value; // Type:  boolean
    value = $(".selector").c1gridview("option", "showGroupArea");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").c1gridview("option", "showGroupArea", newValue);
    var showGroupArea : boolean;
    Example
    // Set showGroupArea to true to display the group area.
    $("#element").wijgrid({ showGroupArea: true });
    Browser Compatibility
    8
    5
    5
    See Also