WOHiddenField
Last modified by Pascal Robert on 2011/09/23 14:40
Introduction
A WOHiddenField adds hidden text to the HTML page. It corresponds to the HTML element <INPUT TYPE="HIDDEN"...>. Hidden fields are sometimes used to store application state data in the HTML page.
Usage
WOHiddenField {
value=defaultValue;
[ name=fieldName;]
[disabled=aBoolean;] ...
}
Bindings
value | Value for the hidden text field. |
name | Name that uniquely identifies this element within the form. You may specify a name or let WebObjects automatically assign one at runtime. |
disabled | If disabled evaluates to true, the element appears in the page but is not active. |