Wiki source code of WOPasswordField

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

Hide last authors
Pascal Robert 10.1 1 {{toc/}}
Pascal Robert 3.1 2
3 = Introduction =
4
Pascal Robert 9.1 5 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"...>.
6
Pascal Robert 3.1 7 = Usage =
8
9 {{code}}
10
Pascal Robert 9.1 11 WOPasswordField {
12 value=defaultValue;
13 [name=fieldName;]
14 [disabled=aBoolean;] ...
15 }
Pascal Robert 3.1 16
17 {{/code}}
18
19 = Bindings =
20
Pascal Robert 10.1 21 |(((
22 value
23 )))|(((
24 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.
25 )))
26 |(((
27 name
28 )))|(((
29 This name uniquely identifies this element within the form. You may specify a name or let WebObjects automatically assign one at runtime.
30 )))
31 |(((
32 disabled
33 )))|(((
34 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.
35 )))
Pascal Robert 9.1 36
Pascal Robert 3.1 37 = Examples =
38
39 == Java methods ==
40
41 == WOD-style ==
42
Pascal Robert 10.1 43 {{code/}}
Pascal Robert 3.1 44
45 == Inline bindings (WOOGNL) ==
46
Pascal Robert 10.1 47 {{code/}}
Pascal Robert 3.1 48
49 = Related documents =
Pascal Robert 9.1 50
Pascal Robert 10.1 51 [[ERXWOPasswordField>>url:http://wocommunity.org/documents/javadoc/wonder/latest/er/extensions/components/_private/ERXWOPasswordField.html||shape="rect"]]