SMART datagrid v1.4 > Classes > GridBase

Back  Forward

DataLudi.GridBase.focusedIndex  property

현재 입력 포커스를 갖는 데이터셀의 위치

사용자가 Tab키나 방향키를 입력하거나 마우스 클릭으로 위치를 변경할 수 있다. 셀 편집 중에 변경되면 편집 완료가 진행되고, 완료된 후에 위치가 변경된다. 

Getter
function focusedIndex(): CellIndex
Code -1
    var idx = grid.focusedIndex().clone();
    idx.rowIndex = idx.rowIndex + 1;
    grid.setFocusedIndex(idx);
Note
See Also
focusedColumn
focusedRow
focusedRowIndex
onCurrentChanging
onCurrentChanged
onCurrentRowChanged
CellIndex
CellIndex.clone
Examples
Focused Cell