wijmo.grid.c1field Namespace > options type : readOnly Option |
Default value: false
A value indicating whether the cells in the column can be edited.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: bool returnsValue = $(".selector").c1field("option", "readOnly"); // Set value var newValue; // Type: bool $(".selector").c1field("option", "readOnly", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ columns: [ { readOnly: false } ] });