ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / allowColSizing Option
In This Topic
    allowColSizing Option
    In This Topic
    Determines whether the column width can be increased and decreased by dragging the sizing handle, or the edge of the column header, with the mouse.
    Syntax
    // Get value
    var value; // Type:  boolean
    value = $(".selector").c1gridview("option", "allowColSizing");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").c1gridview("option", "allowColSizing", newValue);
    var allowColSizing : boolean;
    Example
    // The sizing handle cannot be dragged and column width cannot be changed if this option is set to false
    $("#element").wijgrid({ allowColSizing: false });
    Browser Compatibility
    8
    5
    5
    See Also