@wuiInputPasswordAttr(NAME, [VALUE], [MAXLENGTH], [SIZE], [TITLE], [CLASS])

Inserts HTML attributes in <input> entity for WUI single line input password field.

The following parameters are recognized:

NAME

The name to assign to the password field (what the CGI script will use when looking up the value).

[VALUE]

Default value to put in the password field.

[MAXLENGTH]

Optionial integer value to specify the maximum number of characters the field should accept.

[SIZE]

Optional integer value indicating the number of characters which are displayed to the user (should be less than or equal to the MAXLENGTH value).

[TITLE]

Optional title attribute to appear as a tooltip to the user when their mouse hovers over the input field.

[CLASS]

Name of a CSS class (defaults to "wuiInputTextXhtml" if ommitted).

Example of using the macro:

<input @wuiInputPasswordAttr("secret") />

Assuming the com.ccg.macros.at.All class is within your CLASSPATH and the config/html.at macros file has been generated (Hint: run make atmacros in the wui directory), a developer should be able to run the above example by copy/pasting from below:

[root@probe root]# java com.ccg.macros.at.All <<EOF
@include("config/html.at",,"d")
<input @wuiInputPasswordAttr("secret") />
EOF

This macro is defined as:

@htmlAttr("class","@fnb("@param(5)","wuiInputTextXhtml")")
  @htmlAttr("type","password")
  @htmlAttr("name","@param(0)")
  @toolTipAttr("@param(4)")
  @htmlAttr("value","@param(1)")
  @htmlAttr("maxlength","@param(2)")
  @htmlAttr("size","@param(3)")