SMART datagrid v.1 > Classes > RowIndicator

Back  Forward

DataLudi.RowIndicator.indicatorVisible  property

If this property is false, it will display state bar and hide indicator only.
 However, when stateVisible is false, even if this property is false, it will display indicator. 

Defaults to true.

Getter
function indicatorVisible(): Boolean
Setter
function setIndicatorVisible(value: Boolean)
Code -1
    grid.setOptions({
        rowIndicator: {
            stateVisible: true,
            indicatorVisible: false
        }
    });
Code -2
    grid.rowIndicator().setIndicatorVisible(false);
See also
stateVisible
Examples
Row Indicator