Wijmo UI for the Web
editingMode Option
wijmo.grid.wijgrid Namespace > options type : editingMode Option

Default value: 'none'

Determines the editing mode. Possible values are: "none", "row", "cell",

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijgrid("option", "editingMode");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijgrid("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.
See Also

Reference

options type
wijgrid jQuery Widget