ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / allowEditing Option
In This Topic
    allowEditing Option
    In This Topic
    Determines whether the user can make changes to cell contents in the grid. This option is obsolete. Use the editingMode option instead.
    Syntax
    // Get value
    var value; // Type:  boolean
    value = $(".selector").c1gridview("option", "allowEditing");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").c1gridview("option", "allowEditing", newValue);
    var allowEditing : boolean;
    Example
    // Users cannot change cell contents in the grid if this option is set to false
    $("#element").wijgrid({ allowEditing: false });
    Browser Compatibility
    8
    5
    5
    See Also