SMART datagrid v1.4 > Classes > GridBase
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
- focusedIndex()로 리턴되거나, 설정 시에 사용한 CellIndex 객체의 값을 변경하는 것은 그리드의 focusedIndex에 영향을 주지 않는다. 또, 리턴되는 객체를 이 속성을 호출한 scope을 넘는 범위에서 보관 사용해서는 안된다. 변경 사용해야 할 필요가 있으면 clone() 해서 사용한다.
- See Also
- focusedColumn
- focusedRow
- focusedRowIndex
- onCurrentChanging
- onCurrentChanged
- onCurrentRowChanged
- CellIndex
- CellIndex.clone
- Examples
- Focused Cell