javascript - Adding image and changing text font size in PopupPanel not working -
I have a code in the popup panel for Google Apps Script, except for adding all other property image and changing text font size Are working. I have to add a small image just below the label text and I have created the Parma link for this image to have the option of "Anyone can view the link". I used the img src property for the image and text size
fontSize for the image. Here's my code:
var app = UiApp.createApplication (); // Create a popup panel and set it in the mod Var PopupPanel = app.createPopupPanel (); PopupPanel.add (app.createHTML ("Your application has been submitted successfully!
Please!
I used the dots in the code above the place of the image file for privacy.
Any thoughts on this please?
Thanks
I am not a fan of popup panels because I do not like them very much But I think they are restricted to HTML widgets in UIIP and Google as a list of authorized HTML tags has been published in this context.
The list is as follows: B, BLOCKQUOTE, BODY, BR, center, caption, CITE, code, DIV, EM, H1, H2, H3, H4, H5, H 6, HR, I, Labell, Legend, Lee, OL, P, Span, Strong, Sub, SUP, Table, TBOD, TD, TAD, TLTA, TR, TT, UL
And where I found this was published in March 2012 (search on "March" on the page)
As you can see, img < / Code> The tag is not in the list, so it will not work.
As an action, use it to display the image by adding it to the panel.
Comments
Post a Comment