surendrapanday
surendrapanday

Reputation: 780

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

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"/>

Upvotes: 1

Views: 636

Answers (1)

Jordan Shurmer
Jordan Shurmer

Reputation: 1076

You would do the exact same thing in HTL.

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

Upvotes: 1

Related Questions