Flawless Flawless Flawless explanation, content, pace, speech delivery. Loved it. I have been reading Google App script documentation and even that wasn't that clear. Your explanation of 3 scriptlets and the difference between them was so clear. Subscribed. Thank you for this. I am sure it requires a lot of preparation to do such videos.
@pkhsewing42353 жыл бұрын
I'm really appreciated your explanation. Many tutorials out there just assume that the viewers are some sorts of code master, it makes me very confused, but you make it so simple that even a newbie like me can understand and put it into my job. Amazing!
@shengwenw.19112 жыл бұрын
Really appreciated for your lesson. I have understood about scriptlet finally by watching this video. It`s very helpful!😆 Thanks again!
@jesusespinosanavarro20253 жыл бұрын
I really apreciated the explanation. Right on the point I was looking for! Thanks for taking the time preparing this video. Regards from Spain
@marcopagliari90939 ай бұрын
Grandissimo! Thanks a lot!
@mrinaldebnath4372 жыл бұрын
amazing tutorial...subscribed
@learnmakeit9315 Жыл бұрын
So this way we can use it like react, right?
@gilbertmengue2 жыл бұрын
Amazing tutorials!
@israelrivera44672 жыл бұрын
Hey everyone, can someone tell me how I form a scriplet: . Is it in the Appscript code, HTML or withing scriplet? I already tried some thing, did not work. Thank you for your help.
@ggabriel41782 жыл бұрын
I am not clear as to what is the difference between using these scriplets with their confusing tags as opposed to just using ? Thanks
@BboySpaceCadet4 жыл бұрын
How can I take this a step further and dynamically generate the template and then dynamically evaluate certain values in the template using scriptlets or similar functionality? Right now the only way I can see to do this would be to generate the template using plain text similar to this: var template = HtmlService.createTemplate('The time is <?= new Date() ?>'); var htmlBody = template.evaluate().getContent(); but it looks like this requires you to escape many of the characters. The end goal is to use this htmlBody in an email.
@igebaisa81134 жыл бұрын
is the service of ".createHtmlOutputFromFile" limited to some styles? I tried tweaking the css code and had included tables, row, background images in it. then force printed it but the whole style couldn't be rendered in the index body{font-family: sans-serif, Verdana, Arial; font-size: 18px; background-color: #E6E6E6;} #theForm{display: table; background-color: #1F2B5E; padding: 15px; border-radius: 8px;} h3{font-size: 1.2em; color: #1F2B5E;} .row{display: table-row; height: 50px; font-size: 0.8em; color: #E6E6E6;} .row label{display: table-cell; text-align: left; width: 170px; font-weight: bold;} .row input {display: table-cell; text-align:: left; width: 210px; } .textbox {height: 22px; color: #1F2B5E; border-radius: 5px; border-width: thin;)