ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / editingInitOption Option
In This Topic
    editingInitOption Option
    In This Topic
    Determines an action to bring a cell in the editing mode when the editingMode option is set to "cell". Possible values are: "click", "doubleClick", "auto".
    Syntax
    // Get value
    var value; // Type:  string
    value = $(".selector").c1gridview("option", "editingInitOption");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").c1gridview("option", "editingInitOption", newValue);
    var editingInitOption : string;
    Example
    $("#element").wijgrid({ editingInitOption: "auto" });
    Remarks
    Possible values are: "click": cell is edited via a single click. "doubleClick": cell is edited via a double click. "auto": action is determined automatically depending upon user environment. If user has a mobile platform then "click" is used, "doubleClick" otherwise.
    Browser Compatibility
    8
    5
    5
    See Also