Skip to content
Advertisement

Google Apps Script: Scriplets on HTML Template

I’m looking for a way to add a section inside my Html template that will be conditionally shown.

I’ve been looking at scriptlets but all the examples I found were related to “for” functions.

This is my code so far

JavaScript

In the console log I’m validating that indeed the value from the variable assigment letter is blank and depending on that, I’d like to show a new row inside the table I’m buidling.

However I’m getting the following error.

SyntaxError: Unexpected token ‘;’ at RejectedRequestEmail(Rejected Email:16:49) at onChange(Code:691:11)

It does not tell me exactly in which line of the Html the evaluate function is getting the error

Here is my function that evalutes this html template in case needed

JavaScript

Thanks

Advertisement

Answer

In your situation, how about the following modification?

Modified script:

When you want to use the ternary operator, how about the following modification? In this modification, the scriptlet of <?!= ... ?> is used.

JavaScript

Or, when you want to use the if statement, how about the following modification? In this modification, the scriptlet of <? ... ?> is used.

JavaScript

Reference:

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement