I'm building an application using Google Apps Script. However, I would like to use the Popup Panel to pop up one of my panel in the application. I tried to search, but I did not find any example how to make this pop up panel working properly.
Does anyone have the idea how to make this work?
What I'm trying to do is to create a list of services in the vertical panel, when users click one of the service link then it will pop up the panel using the Popup Panel function with modal method. So user can edit the service details in the pop up panel. After the users update the service, then popup panel will close and go back to panel which contain the list of services.
Thanks
Currently popup panel doesn't work properly, However you can make your own custom panels which can be made to popup on different events using client handler or server handler.
Here is a rough code which will show you a demo for a popup triggered on a click event using client handler.