WOPasswordField

Last modified by Pascal Robert on 2012/01/30 22:34

Introduction

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

Usage


WOPasswordField {
  value=defaultValue;
  [name=fieldName;]
  [disabled=aBoolean;] ...
}

Bindings

value

During page generation, value sets the default value of the text field. This value is not displayed to the user. During request handling, value holds the value the user entered into the field, or the default value if the user left the field untouched.

name

This name 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. That is, value does not contain the user's input when the page is submitted.

Examples

Java methods

WOD-style

Inline bindings (WOOGNL)

Related documents

ERXWOPasswordField