SMART datagrid v1.4 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.crossHomeWhenExitLast  property

enterToTab이 true 이고 crossWhenExitLast 옵션이 true일 시 엔터 입력해서 마지막 컬럼, 마지막 row 도달 시 포커스가능한 첫번째 컬럼 첫번째 로우로 이동한다 

기본값은 false.

Getter
function crossHomeWhenExitLast(): Boolean
Setter
function setCrossHomeWhenExitLast(value: Boolean)
Code -1
    grid.setOptions({
        edit: {
            enterToTab: true
            enterToNextRow: true
            crossWhenExitLast: true
            crossHomeWhenExitLast: true
        }
    });
Code -2
    grid.setEditOptions({
        enterToTab: true
        enterToNextRow: true
        crossWhenExitLast: true
        crossHomeWhenExitLast: true
    });
Code -3
    grid.editOptions().setCrossHomeWhenExitLast(true);
See Also
enterToNextRow
crossWhenExitLast
crossHomeWhenExitLastEnter
enterToTab
셀 편집 개요
Examples
셀 편집
편집 키