I need to supply the key dynamically from the action to the text tag
<s:text name="<%=talkToUsInfo.messageKey%>" />
but the name attribute on text tag is declared as false ( not sure why ? )
How do i get something like this working without changing the tld in the jar file ?
Struts documentation says:
Instead, you should use the getText() method that you inherit when your Action extends XWork’s ActionSupport:
So I used e.g.
instead of “s:text” and it worked.