Wijmo UI for the Web
editingInitOption Option

Default value: 'auto'

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
Javascript (Usage) 
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijgrid("option", "editingInitOption");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijgrid("option", "editingInitOption", newValue);
        
});
Javascript (Specification) 
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
7
5
5

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.