是否有办法防止用户在SpreadJS中更改工作表的名称。有一种方法可以防止用户使用
Spread.allowSheetReorder(假);
是否有防止工作表名称更改的类似方法?
发布于 2015-05-21 06:55:53
通过将工作表的tabEditable属性设置为false,可以防止用户编辑工作表名称。以下是doc链接:http://sphelp.grapecity.com/webhelp/SpreadJSWeb/webframe.html#tabstrip.html
您还可以查看实现它的示例:http://spread.grapecity.com/Demos/JS/SpreadJSExplorerSample/?widget=MultipleSheets&sample=Tab%20strip%20setting
https://stackoverflow.com/questions/30350036
复制相似问题