Is there a way to disable the new spreadsheet button? I haven't found it in the options.
I then tried to use the actionBegin event and cancel it, but the result is that the sheet is still created and the layout of the sheet names gets corrupted, due to a new sheet with no name.
function ejSpreadsheet_actionBegin(args) {
if (args.isNewSheet) {
args.cancel = true;
}
}
Can this be done?
Thank you