Wijmo UI for the Web
editingMode Field
wijmo.grid Namespace > IDetailSettings Interface : editingMode Field

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

Syntax
var instance; // Type: wijmo.grid.IDetailSettings;
var value; // Type: string
value = instance.editingMode;
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

IDetailSettings Interface