vote up 1 vote down star

I'd like to be able to include the return value of a fmt tag in another tag:

<local:roundedBox boxTitle="<fmt:message key="somekey"/>">
content
</roundedBox>

I've run into this problem multiple times and it just seems like a stupid limitation of jsp. Is there a simple way around this?

flag

1 Answer

vote up 3 vote down check

Use an intermediate variable to store the result like this (code not tested)

<fmt:message key="somekey" var="formattedvarname" />
<local:roundedBox boxTitle="${formattedvarname}">
content
</roundedBox>
link|flag
Ah! I didn't know you could do that with a fmt tag. Thanks :-) – Akrikos Jan 13 at 18:09
If this answers your question please mark it so - that way the system will know it's answered and not just you. (And I get some points I guess, which is also supposed to be nice ;-) – Simon Groenewolt Jan 16 at 14:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.