How to write hidden input field in HTML Template Language (HTL)

654 views Asked by At

What is the syntax to include hidden field in HTML Template Language (HTL)?

In jsp we can write

<input type="hidden" id="thisField" name="inputName" value="hiddenValue"/>
1

There are 1 answers

0
Jordan Shurmer On BEST ANSWER

You would do the exact same thing in HTL.

<input type="hidden" id="thisField" name="inputName" value="hiddenValue"/>