SMART datagrid v1.4 > Classes > EditOptions
true면 편집 중인 행의 마지막 셀에서 Enter나 Tab 키를 입력할 때 행 커밋한다.
행 커밋 대신 셀만 커밋하기 위해서는 hideOnLastCell(ver1.3)을 이용한다.
기본값은 false.
grid.setOptions({
edit: {
commitOnLastCell: true
}
});
grid.setEditOptions({
commitOnLastCell: true
});
grid.editOptions().setCommitOnLastCell(true);