For Adobe ColdFusion application servers Hidden

A hidden format field allows information to be passed to the server without visibly appearing on the form. This could be, for example, a customer number or an order number. It should not be secret information however as it is visible in the HTML code. Hidden fields are often also used to carry information through on a multi-page form. Note that you can use the TerraForm attribute PassthroughFieldList to make this easier.

TerraForm recognises no special fields for hidden format.

Examples

A hidden field with a fixed, assigned value:

<cf_terrafield
  name="CustomerID"
  format="hidden"
  value="164"
/>

If you are prefilling your form with information from a scope such as a query (using the TerraForm attribute InputScopeList), you can simply write this and rely on TerraForm to insert the value:

<cf_terrafield
  format="hidden"
  name="OrderID"
/>

HyperText Markup Language
The coding language used to create hypertext documents for use on the World Wide Web.
No comments yet