Display HTML message box in Google Apps Script?

The method Browser.msgBox("hello")allows me to display the text "hello" to the user in the message box, but if I put any HTML there, for example, "Hi there ", the user simply sees the HTML tags.

Is there a way to display a popup with simple HTML for the user using the Google Apps script?

+3
source share
2 answers

If you want to display a more complex interface, check out the new UIApp service added by google:

http://code.google.com/googleapps/appsscript/service_ui.html

The documentation is quite rare, so check out their examples:

http://code.google.com/googleapps/appsscript/guide_user_interfaces.html

+1

Source: https://habr.com/ru/post/1743406/


All Articles