Wiki source code of WOFrame
Last modified by Pascal Robert on 2011/05/08 01:36
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{toc/}} | ||
2 | |||
3 | = Introduction = | ||
4 | |||
5 | WOFrame will generate a <frame> HTML element. | ||
6 | |||
7 | = Usage = | ||
8 | |||
9 | {{code}} | ||
10 | |||
11 | WOFrame { | ||
12 | value=aMethod; | ||
13 | | src=aURL; | ||
14 | | pageName=aString; | ||
15 | | directActionName=anActionName; actionClass=className;... | ||
16 | } | ||
17 | |||
18 | {{/code}} | ||
19 | |||
20 | = Bindings = | ||
21 | |||
22 | |((( | ||
23 | value | ||
24 | )))|((( | ||
25 | Method that will supply the content for this frame. | ||
26 | ))) | ||
27 | |((( | ||
28 | src | ||
29 | )))|((( | ||
30 | External source that will supply the content for this frame. | ||
31 | ))) | ||
32 | |((( | ||
33 | pageName | ||
34 | )))|((( | ||
35 | Name of WebObjects page that will supply the content for this frame. | ||
36 | ))) | ||
37 | |((( | ||
38 | directActionName | ||
39 | )))|((( | ||
40 | The name of the direct action method (minus the "Action" suffix) that will supply the content for the frame. | ||
41 | ))) | ||
42 | |((( | ||
43 | actionClass | ||
44 | )))|((( | ||
45 | The name of the class in which the method designated in directActionName can be found. Defaults to "DirectAction". | ||
46 | ))) | ||
47 | |||
48 | = Examples = | ||
49 | |||
50 | == Java methods == | ||
51 | |||
52 | == WOD-style == | ||
53 | |||
54 | {{code/}} | ||
55 | |||
56 | == Inline bindings (WOOGNL) == | ||
57 | |||
58 | {{code/}} | ||
59 | |||
60 | = Related documents = |