I am developing a web app using Google Apps Script where I fetch some JSON results from web. I'd like to present those results as a small spreadsheet embedded into one of the panels which is in the screen of the web app itself.
The idea is to do something like this:
var verPanel = app.createVerticalPanel(); verPanel.add(some_spreadsheet); Is there any way how can I directly embed a spreadsheet object inside UI element?
Many thanks!
Michael