SMART datagrid v.1 > Classes > EditOptions
如果为true,用户就可以在运行时间,通过使用ctrl+c键,将所选单元格区域的值复制到剪贴板。
默认值为true.
    grid.setOptions({
        edit: {
            copyEnabled: true
        }
    });
    grid.setEditOptions({
        copyEnabled: true
    });
    grid.editOptions().setCopyEnabled(true);