ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / editingMode Option
In This Topic
    editingMode Option
    In This Topic
    Determines the editing mode. Possible values are: "none", "row", "cell",
    Syntax
    // Get value
    var value; // Type:  string
    value = $(".selector").c1gridview("option", "editingMode");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").c1gridview("option", "editingMode", newValue);
    var editingMode : string;
    Example
    $("#element").wijgrid({
       editingMode: "row",
       columns: [{
          showEditButton: true
       }]
    });
    Remarks
    Possible values are: "none": the editing ability is disabled. "cell": a single cell can be edited via a double click. "row": a whole row can be edited via a command column.
    Browser Compatibility
    8
    5
    5
    See Also