Versions Compared

Key

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

...

Code Block
xml
xml
<ww:textfield label="%{getText('com.acme.login.text')}" name="'login'"/>

However, due to the way WebWork and SiteMesh work, you would need to seperate the above code in to two tags.

Code Block
xml
xml
<ww:text id="login" name="'com.acme.login.text'"/>

<ww:textfield label="#login" name="'login'"/>

SiteMesh, Velocity, and WebWork

...