ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / allowColMoving Option
In This Topic
    allowColMoving Option
    In This Topic
    A value indicating whether columns can be moved.
    Syntax
    // Get value
    var value; // Type:  boolean
    value = $(".selector").c1gridview("option", "allowColMoving");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").c1gridview("option", "allowColMoving", newValue);
    var allowColMoving : boolean;
    Example
    // Columns cannot be dragged and moved if this option is set to false
    $("#element").wijgrid({ allowColMoving: false });
    Remarks
    This option must be set to true in order to drag column headers to the group area.
    Browser Compatibility
    8
    5
    5
    See Also