Hi all,
In my jsp I want to create a standard <link>help with this field</link>
which
will use javascipt to create a little popup dialog.
I want my site to be internationalized, so the contents of the dialog
box is also
a jsp which is going to read from my resource bundle to get the help
message.
I was thinking of trying to pass a string into the popup dialog jsp, so
that I would
only ever have to write a single popup.jsp and it would be able to get
the error
message based on the string.
For example
Main.jsp
<link messageValue="message1"> help with this function<link/>
<link messageValue="message2"> help with this function<link/>
then in the popup.jsp
<bean:message key="messageValue"/>
However, I'm not sure
a) if this makes any sense
b) how to pass the parameter (should I go through an action?)
hope this makes some sense,
thanks for any responses,
Brian