DataLudi Grid v.1 > Classes > EditOptions
true이면 셀 편집기에서 편집 중 캐럿의 위치가 처음인 상태에서 LEFT 키를 누르면 이전 셀로 이동하고, 캐럿의 위치가 마지막일 때 RIGHT 키를 누르면 다음 셀로 이동한다. 
false면 편집기를 벗어나지 않는다.
기본값은 true.
    grid.setOptions({
        edit: {
            moveByArrowKeys: false,
            useTabKey: false
        }
    });
    grid.setEditOptions({
        moveByArrowKeys: false,
        useTabKey: false
    });
    grid.editOptions().setMoveByArrowKeys(false);