SMART datagrid v.1 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.skipReadOnly  property

If it is true, when move the cell by tab key or enter key, it will skip over the non-editable cell. 

Defaults to false.

Getter
function skipReadOnly(): Boolean
Setter
function setSkipReadOnly(value: Boolean)
Code -1
    grid.setOptions({
        edit: {
            skipReadOnly: false
        }
    });
Code -2
    grid.setEditOptions({
        skipReadOnly: false
    });
Code -3
    grid.editOptions().setSkipReadOnly(false);
See Also
GridBase.focusedIndex
Cell Editing Overview
Examples
Edit Keys
Cell Editing