SMART datagrid v1.4 > Classes > EditOptions
true면 enter 키를 눌렀을 때 다음 셀로 이동한다.
enterToNextRow가 true면 같은 컬럼 위치의 다음 행으로 이동한다.
기본값은 true.
grid.setOptions({
edit: {
enterToTab: true,
enterToNextRow: true
}
});
grid.setEditOptions({
enterToTab: true,
enterToNextRow: true
});
grid.editOptions().setEnterToTab(true);