SMART datagrid v1.4 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.moveByArrowKeys  property

true이면 셀 편집기에서 편집 중 캐럿의 위치가 처음인 상태에서 LEFT 키를 누르면 이전 셀로 이동하고, 캐럿의 위치가 마지막일 때 RIGHT 키를 누르면 다음 셀로 이동한다. 

false면 편집기를 벗어나지 않는다. 

기본값은 true.

Getter
function moveByArrowKeys(): Boolean
Setter
function setMoveByArrowKeys(value: Boolean)
Code -1
    grid.setOptions({
        edit: {
            moveByArrowKeys: false,
            useTabKey: false
        }
    });
Code -2
    grid.setEditOptions({
        moveByArrowKeys: false,
        useTabKey: false
    });
Code -3
    grid.editOptions().setMoveByArrowKeys(false);
See Also
enterToTab
useTabKey
enterToEdit
crossWhenExitFirst
crossWhenExitLast
moveInSelection
Examples
Edit Keys
Cell Editing