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

Determines whether the user can make changes to cell contents in the grid.

This option is obsolete. Use the editingMode option instead.

Default value: false

Type: Boolean

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijgrid("option", "allowEditing");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijgrid("option", "allowEditing", newValue);
        
});
var allowEditing : boolean;
Example
// Users cannot change cell contents in the grid if this option is set to false
$("#element").wijgrid({ allowEditing: false });
See Also

Reference

options type
wijgrid jQuery Widget