--- Chris Pratt <[EMAIL PROTECTED]> wrote:
> Is it possible to place the data for the list attribute of an
> <s:select> tag in a resource bundle (so that it can be
> internationalized)?  I have tried adding the data to my
> application.properties file:
> 
> gender.map='FEMALE':'Female','MALE':'Male'
> 
> Then referencing it in the JSP as:
> 
> <s:select name="gender" id="gender" list="#{(getText('gender.map'))}"/>

You could try something like #{%{getText...}} but I suspect that wouldn't
work.

You might also try creating it with a specific map type:

[EMAIL PROTECTED]@{ getText... }

and see if that affects statement parsing. I suspect that won't work either,
though.

You could also do the work in the action, converting the text values into a
real list/map.

Dave


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to