I am trying to create a dynamically populated menu in Google Sheets using Google Apps Script.
- I have a sheet, 'Classes', where I list the classes I teach.
- On running my script I get my script to read and load these classes into an array.
- In order to only hard-code values in the original 'Classes' sheet I want to then to create a sub-menu item for each of these classes.
The sheet is called 'Classes'. The values in the classes sheet are 8H, 9p1, 9p2 etc. They are in cells A1:A12. In the debugger the array, menuItemArray, loads correctly with all expected classes from the 'Classes' sheet.
The error I get is:
TypeError: Cannot find function addSubMenu in object 9p1. (line 13, file "Code")
This is when stepping into the line
menuItemArrayClass = menuItemArray [menuCount]
I would be really grateful for any help as to what I am doing wrong or any better ways to do it.
Here is my code:
function onOpen(e) {
var ui = SpreadsheetApp.getUi();
var menuCount = 0;
ui.createMenu('Manage Timetable')
.addItem('First item', 'menuItem1')
.addSeparator()
var menuItemArray = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Classes').getDataRange().getValues();
for (menuCount=1;menuCount < menuItemArray.length;++menuCount) {
var menuItemArrayClass = []
menuItemArrayClass = menuItemArray [menuCount]
.addSubMenu(ui.createMenu('Manage Classes')
.addItem(menuItemArrayClass [menuCount] + 'Schedule Timetable', 'runBatch1'))
.addToUi();
}
}
Try this:
If you start from 1 you loose first row, so I changed it to 0.
Also now you need to dynamically allocate the scripts, but I do no know how they are set up in your sheet, so I left that part unchanged.
Also not sure if you need to add 'Manage Classes' menu every time, but I kept it just in case.
Try this instead as it seems more like what you want:
myFunction()
for several functions in the custom menu.I understand like above. If my understanding is correct, how about this answer? Please think of this as just one of several possible answers.
Issue and workaround:
Unfortunately, in the current stage, when a function is added to the custom menu with
addItem
method, the argument cannot been able to be used. And when one of functions in the custom menu is run, the information about the function name which was run cannot be retrieved. By this, your goal cannot be directly achieved. So it is required to use the workaround.When I saw your question, for your goal, I thought that this thread is useful. At google.script.run, it is required to be able to directly run the function at the script editor and the function is included in
this
. But at the custom menu, when the function is included inthis
, the function can be run even when the function cannot be directly run at the script editor. When the function is run in only GAS side, the function can be run even when the function cannot be directly run with the script editor. I thought that this situation can be used for the workaround.Modified script:
When your script is modified by including this workaround, it becomes as follows. Please copy and paste it to the container-bound script of Spreadsheet which has the headers ("Col1", "Col2",,,) at the 1st row and the values from 2nd row. And when you run the script, please open the Spreadsheet. By this, the custom menu is added. And when new column is added by copying, the additional column is also added to the custom menu. And when the function at the custom menu is run, the values corresponding to the column are activated.
From:
To:
onChange()
. By this, when the column is deleted, the custom menu is updated.function onEdit() {}
andfunction onChange() {}
are used for runningonOpen();
.Result:
Note:
onOpen();
.onOpen
is run every time. So when the number of columns are large, the process cost will be high. So please be careful this.References:
Assuming you wanted to store the relevant captions and function names in Sheet1 columns A & B, respectively, you could simply call
.getValues()
and iterate through that data.In the original post, the error was happening because
.addSubMenu()
was being called on the value[9p1]
instead of a Menu object. Further, from my understanding of the question, I think a menu item is intended to be created in the loop, not an individual submenu for each class. So those are two problems that needed to be resolved.I also assume that you don't want to run
runBatch1
for every single menu item as that would defeat the purpose of creating different menu items. According to the documentation, the method for adding a menu item expects two strings:caption
– The label for the menu item.functionName
– The name of the function to invoke when the user selects the item.So it follows that you can substitute any string when making your
submenu.addItem()
call.Other Scenarios
Array of Item Objects
Alternatively, you could define an array (or object map) of the various submenu items you want to include, rather than storing them in the spreadsheet. Here, I've used an array of objects to clearly define the caption & functionName values.
Caption String Manipulation
Since the method accepts any string, you can perform any string manipulation that will result in a valid function name. In this example, I'm only storing the captions in an array and I dynamically generate the function names based on the caption values. (You could also pull the caption names from column A and apply the same manipulation.)