Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
xml
xml
1title:Reference Another Object in the ActionContext
<s:property value="#session.mySessionPropKey"/> or
<s:property value="#session[WW:"mySessionPropKey"]"/> or
<s:property value="#request[WW:"mySessionPropKey"]/>

The ActionContext is also exposed to Action classes via a static method.

...

Code Block
xml
xml
<s:property value="#fib =:[#this==0 ? 0 : #this==1 ? 1 : #fib(#this-2)+#fib(#this-1)], #fib(11)" />

Next: Tag Syntax