Wiki source code of WOParam

Version 4.1 by Pascal Robert on 2011/05/08 01:55

Show last authors
1 {{toc/}}
2
3 = Introduction =
4
5 WOParam elements are used for passing WOApplet parameters.
6
7 = Usage =
8
9 {{code}}
10
11 WOParam {
12 name=aString;
13 value=aString; | action=aMethod; ...
14 }
15
16 {{/code}}
17
18 = Bindings =
19
20 |(((
21 name
22 )))|(((
23 Symbolic name associated with this element's value.
24 )))
25 |(((
26 value
27 )))|(((
28 Value of this parameter.
29 )))
30 |(((
31 action
32 )))|(((
33 Method that sets the parameter's value. Use this attribute instead of value if you want the parameter to be a WebObjects component.
34 )))
35
36 = Examples =
37
38 == Java methods ==
39
40 == WOD-style ==
41
42 {{code/}}
43
44 == Inline bindings (WOOGNL) ==
45
46 {{code/}}
47
48 = Related documents =