Wiki source code of WOActionURL

Last modified by Pascal Robert on 2011/10/18 06:06

Hide last authors
Pascal Robert 4.1 1 {{toc/}}
Pascal Robert 1.1 2
3 = Introduction =
4
Pascal Robert 3.1 5 WOActionURL enables the creation of URLs to invoke methods or specify pages to return. You can use this element for a variety of purposes, but it is primarily intended to support JavaScript within a WebObjects application.
6
Pascal Robert 1.1 7 = Usage =
8
9 {{code}}
10
Pascal Robert 3.1 11 WOActionURL {action=aMethod | pageName=aString; directActionName=anActionName; actionClass=className; [fragmentIdentifier=anchorFragment;] [queryDictionary=aDict; ?key=value;] [secure=aBoolean;]}
Pascal Robert 1.1 12
13 {{/code}}
14
15 = Bindings =
16
Pascal Robert 4.1 17 |(((
18 action
19 )))|(((
20 Action method to invoke when the URL is accessed. This method must return a an object that conforms to the WOActionResults interface such as WOComponent or WOResponse.
21 )))
22 |(((
23 pageName
24 )))|(((
25 The name of a WebObjects page to display when the URL is accessed.
26 )))
27 |(((
28 directActionName
29 )))|(((
30 The direct action method to invoke when the URL is accessed (minus the "Action" suffix). Defaults to "default".
31 )))
32 |(((
33 actionClass
34 )))|(((
35 The name of the class in which the directActionName can be found. Defaults to "DirectAction".
36 )))
37 |(((
38 fragmentIdentifier
39 )))|(((
40 Named location to display in the destination page (that is, an anchor in the destination page).
41 )))
42 |(((
43 queryDictionary
44 )))|(((
45 Takes a dictionary that should be appended to the hyperlink's URL after a question mark character. The dictionary must be correctly encoded and will be merged with any existing query dictionary for a particular session ID.
46 )))
47 |(((
48 ?key
49 )))|(((
50 Adds a key-value pair to the specified queryDictionary (or replaces an existing key) by prefixing the key with a "?". For example: ?x = y; puts the key "x" into the query dictionary with the value of the keypath y.
51 )))
52 |(((
53 secure
54 )))|(((
55 Changes the URL prefix from http to https when WebObjects generates URLs for component actions and direct actions for this element. For this attribute to have any effect, you must provide bindings either for the action, directAction, actionClass, or pageName attribute (respecting the valid combinations).
56 )))
Pascal Robert 3.1 57
Pascal Robert 1.1 58 = Examples =
59
60 == Java methods ==
61
62 == WOD-style ==
63
Pascal Robert 4.1 64 {{code/}}
Pascal Robert 1.1 65
66 == Inline bindings (WOOGNL) ==
67
Pascal Robert 4.1 68 {{code/}}
Pascal Robert 1.1 69
70 = Related documents =