SMART datagrid v.1 > Classes > GridRow

Back  Forward

DataLudi.GridRow.dataState  property

The State of data row when it is connected to data row. 

Defaults to DataRowState.NONE.

Getter
function dataState(): DataRowState
Setter
function setDataState(value: DataRowState)
Code -1
    var row = grid.focusedRow();
    if (row.dataState() == DataLudi.DataRowState.DELETED) {
        dataset.clearRowStates([DataRowState.DELETED], true);
    }
See Also
dataIndex
DataRowState
DataRow
Examples
Hello Grid
Row Indicator