如何防止 SpreadJS 中的 sheet 名称更改
How to prevent sheet name change in SpreadJS
有没有办法阻止用户在 SpreadJS 中更改 sheet 的名称。例如。有一种方法可以防止用户使用
对 sheet 重新排序
spread.allowSheetReorder(假);
是否有类似的方法来防止sheet更名?
您可以通过将 sheet 的 tabEditable 属性 设置为 false 来阻止用户编辑 sheet 名称。这是文档 link:http://sphelp.grapecity.com/webhelp/SpreadJSWeb/webframe.html#tabstrip.html
您还可以查看实现它的示例:http://spread.grapecity.com/Demos/JS/SpreadJSExplorerSample/?widget=MultipleSheets&sample=Tab%20strip%20setting
有没有办法阻止用户在 SpreadJS 中更改 sheet 的名称。例如。有一种方法可以防止用户使用
对 sheet 重新排序spread.allowSheetReorder(假);
是否有类似的方法来防止sheet更名?
您可以通过将 sheet 的 tabEditable 属性 设置为 false 来阻止用户编辑 sheet 名称。这是文档 link:http://sphelp.grapecity.com/webhelp/SpreadJSWeb/webframe.html#tabstrip.html
您还可以查看实现它的示例:http://spread.grapecity.com/Demos/JS/SpreadJSExplorerSample/?widget=MultipleSheets&sample=Tab%20strip%20setting