SMART datagrid v1.4 > Classes > RowIndicator

Back  Forward

DataLudi.RowIndicator.selectable  property

true면 사용자가 row indicator 셀을 마우스로 클릭하거나 드래깅해서 행들을 선핵할 수 있다. 

DisplayOptions.selectStyle 설정과 상관 없이 행 단위로 선택된다. 

기본값은 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