SMART datagrid v.1 > Classes > AutoFill

Back  Forward

DataLudi.AutoFill.checkReadOnly  property

If it is true, it will skip the cells which cannot be updated when run filling. 

If set as readOnly through DataColumn.readOnly or CellStyle, it will be skipped. 

Defaults to false.

Getter
function checkReadOnly(): Boolean
Setter
function setCheckReadOnly(value: Boolean)
Code -1
    grid.autoFill().setCheckReadOnly(true);
    // or
    grid.setAutoFill({
        checkReadOnly: true
    });
See Also
enabled
GridBase.autoFill
DataColumn.readOnly
CellStyle.readOnly
Examples
Column Footer