Posted 18 March 2025, 1:45 am EST - Updated 18 March 2025, 3:10 am EST
How to rename “File” button in spreadjs designer menu?
UPD. Found the answer. Non relevant question
Forums Home / Spread / SpreadJS
Posted by: anton.kagakin on 18 March 2025, 1:45 am EST
Posted 18 March 2025, 1:45 am EST - Updated 18 March 2025, 3:10 am EST
How to rename “File” button in spreadjs designer menu?
UPD. Found the answer. Non relevant question
Posted 18 March 2025, 3:21 am EST
Hi,
You can change the “FILE” button name by modifying the resource object from which it’s picked up and then applying the updated resource. Refer to the snippet below and the sample for more details: https://jscodemine.mescius.io/share/Na73OdVa2Eq23kleYZsazw/?IsEmbed=false&Theme=Unset&PreviewDirection=0&IsEditorShow=true&IsExplorerShow=true&IsPreviewShow=true&IsConsoleShow=true&IsRunBTNShow=false&IsResetBTNShow=false&IsOpenInCodemineBTNShow=false&PanelWidth=20&PanelWidth=50&PanelWidth=30&defaultOpen={“OpenedFileName”%3A[“%2Findex.html”%2C"%2Fsrc%2Fapp.js"%2C"%2Fpackage.json"]%2C"ActiveFile"%3A"%2Fsrc%2Fapp.js"}
let res = GC.Spread.Sheets.Designer.getResources();
res.ribbon.home.file = "New File Name";
GC.Spread.Sheets.Designer.setResources(res);
References:
getResources: https://developer.mescius.com/spreadjs/api/designer/modules/GC.Spread.Sheets.Designer#getresources
setResources: https://developer.mescius.com/spreadjs/api/designer/modules/GC.Spread.Sheets.Designer#setresources
Regards,
Priyam