SMART datagrid v1.4 > Classes > EditOptions

[ grids ver.1.3.0]   Back  Forward

DataLudi.EditOptions.hideOnLastCell  property

true면 편집 중인 행의 마지막 셀에서 EnterTab 키를 입력할 때 셀 커밋한다. 

행 편집을 완료하기 위해서는 commitOnLastCell을 이용한다. 

기본값은 true.

Getter
function hideOnLastCell(): Boolean
Setter
function setHideOnLastCell(value: Boolean)
Code -1
    grid.setOptions({
        edit: {
            hideOnLastCell: true
        }
    });
Code -2
    grid.setEditOptions({
        hideOnLastCell: true
    });
Code -3
    grid.editOptions().setHideOnLastCell(true);
See Also
commitOnLastCell
crossWhenExitLast
useTabKey
GridBase.commit
셀 편집 개요
Examples
셀 편집
편집 키