SMART datagrid v.1 > Classes > EditOptions
如果为true,就会在编辑行中,没有显示编辑器的状态下, 如果输入"Ctrl+'(引号)"键,就会获取上个行的单元格的值并进行复制之后,移动到下个单元格。
默认值为true.
grid.setOptions({
edit: {
useCopyKey: false,
enterToTab: true
}
});
grid.setEditOptions({
useCopyKey: false,
enterToTab: true
});
grid.editOptions().setUseCopyKey(true);