Changes for page WOHiddenField

Last modified by Pascal Robert on 2011/09/23 14:40

From version 2.1
edited by Pascal Robert
on 2011/04/26 23:06
Change comment: There is no comment for this version
To version 5.1
edited by Pascal Robert
on 2011/05/08 01:43
Change comment: Migrated to Confluence 5.3

Summary

Details

Page properties
Parent
... ... @@ -1,0 +1,1 @@
1 +Dynamic Elements
Content
... ... @@ -1,16 +1,39 @@
1 -{{toc}}{{/toc}}
1 +{{toc/}}
2 2  
3 3  = Introduction =
4 4  
5 +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.
6 +
5 5  = Usage =
6 6  
7 7  {{code}}
8 8  
11 +WOHiddenField {
12 + value=defaultValue;
13 + [ name=fieldName;]
14 + [disabled=aBoolean;] ...
15 +}
9 9  
10 10  {{/code}}
11 11  
12 12  = Bindings =
13 13  
21 +|(((
22 +value
23 +)))|(((
24 +Value for the hidden text field.
25 +)))
26 +|(((
27 +name
28 +)))|(((
29 +Name that 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.
35 +)))
36 +
14 14  = Examples =
15 15  
16 16  == Java methods ==
... ... @@ -17,16 +17,10 @@
17 17  
18 18  == WOD-style ==
19 19  
20 -{{code}}
43 +{{code/}}
21 21  
22 -
23 -{{/code}}
24 -
25 25  == Inline bindings (WOOGNL) ==
26 26  
27 -{{code}}
47 +{{code/}}
28 28  
29 -
30 -{{/code}}
31 -
32 32  = Related documents =