Wijmo UI for the Web
allowEditing Option

Default value: false

Determines whether the user can make changes to cell contents in the grid. This option is obsolete. Use the editingMode option instead.

Syntax
Javascript (Usage) 
$(function () {
    
    // Get value
    var returnsValue; // Type:  bool
    returnsValue = $(".selector").wijgrid("option", "allowEditing");
    
    // Set value
    var newValue; // Type:  bool
    $(".selector").wijgrid("option", "allowEditing", newValue);
        
});
Javascript (Specification) 
var allowEditing : bool;
Example
// Users cannot change cell contents in the grid if this option is set to false
$("#element").wijgrid({ allowEditing: false });
Browser Compatibility
7
5
5

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.