SMART datagrid v.1 > Classes > RowIndicator

Back  Forward

DataLudi.RowIndicator.selectable  property

If it is true, the user can click or drag row indicator cell with mouse to select rows. 

Regardless of DisplayOptions.selectStyle setting, it will be selected in row unit. 

Defaults to true.

Getter
function selectable(): Boolean
Setter
function setSelectable(value: Boolean)
Code -1
    grid.setOptions({
        rowIndicator: {
            selectable: true
        }
    });
Code -2
    grid.rowIndicator().setSelectable(true);
See Also
DisplayOptions.selectStyle
SelectionStyle
Examples
RowIndicator