SMART datagrid v1.4 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.commitOnLastCell  property

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

행 커밋 대신 셀만 커밋하기 위해서는 hideOnLastCell(ver1.3)을 이용한다. 

기본값은 false.

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