Wijmo UI for the Web
editingMode Option

Default value: 'none'

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

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

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.