I want to fix my "Drawings Button" to one position in google sheets so that when I scroll through the sheet they are always in the same position as a menu
so... the user always has the options available in front of him.
This is the link for my sheet
https://docs.google.com/spreadsheets/d/1YJZlonIYi4c2H_NRfXQtMBPD8MTtM5KQcCtyjYiUca0/edit?usp=sharing
You can freeze your top rows and put them inside.
In Google sheets, I have multiple sheets/tab in one spreadsheet file. I want to trigger a action when I switch from one tab to another i.e. when I click on the tab name / sheet name. Is this possible?
I'm looking for the same solution. The only answer I've come up with is to hide all sheets but one and force the user to click a button to select a sheet to be unhidden, afterwhich the current sheet is hidden.
I am trying to work with the Google Place Picker API
(https://developers.google.com/places/ios-api/placepicker)
I and want to edit a few things when the modal PlacePicker view appears.
For example the 'Title' should be either another language or set by me. Or generally edit navigation bar (left button etc).
I would also like to change the mapStyle ?
I am trying to make a toggle box similar to the one you use in the Angular Material docs when you want to view the source code. You press the <> button on the menu bar and the panel slides open underneath revealing the html. For example, this page has one: https://material.angularjs.org/latest/demo/button
I can't seem to find it anywhere in the docs and I am not sure what the element is called or how to use it.
I created an add-on menu for Google Sheet by using script SpreadsheetApp.getUi().createAddonMenu(). But as requested by our customer, instead of putting this menu under Add-ons, now we put this menu on top menu by using SpreadsheetApp.getUi().CreateMenu() and want to remove the menu under Add-ons. I tried SpreadsheetApp.getActive().removeMenu() but it doesn't work. Is anyone know how to remove the Add-ons menu item?
SpreadsheetApp.getActiveSpreadsheet().removeMenu('Custom Menu');
Reloading the Spreadsheet with Ctrl + R doesn't work to re-execute onOpen(), because the Spreadsheet App overrides the keys' function and reloads the Spreadsheet content within the Google App. To really reload, you may press Ctrl + F5 or use the Browser's Reload button or click into the address bar and hit Enter.
Some Examples for creating, editing and removing menus / menu items:
http://apps-script-google.blogspot.com/2015/03/custom-menu-create-delete.html
I realized the SpreadsheetApp.getUi().createAddonMenu() was in onOpen(), that means this Add-on menu item was only created when the sheet is opening. That means if the sheet is closed, the menu item will not exist. So just modify menu items in the script, close the sheet and re-open it, the menu item will be change accordingly.