SMART datagrid v1.4 > Classes > EditOptions
true면 이미 편집 중인 행에서 편집기가 표시되지 않은 상태에서 "Ctrl+'(따옴표)" 키를누르면 바로 이전 행의 셀값을 가져와서 복사한 후 다음 셀로 이동한다.
기본값은 true.
grid.setOptions({
edit: {
useCopyKey: false,
enterToTab: true
}
});
grid.setEditOptions({
useCopyKey: false,
enterToTab: true
});
grid.editOptions().setUseCopyKey(true);