WOPasswordField
Synopsis
WOPasswordField{[ name = fieldName;]
value = defaultValue;
[disabled =YES|NO;] ...};
Description
A WOPasswordField represents itself as a text field that doesn't echo the characters that a user enters. It corresponds to the HTML element <INPUT TYPE="PASSWORD"...>.
- name
-
A name that uniquely identifies this element within the form. You may specify a name or let WebObjects automatically assign one at runtime.
- value
-
On output, value sets the default value of the text field. This value is not displayed to the user. On input, value holds the value the user entered into the field, or the default value if the user left the field untouched.
- disabled
-
If disabled evaluates to YES, the element appears in the page but is not active.
Examples