fea jabi wrote:
I have added a column with <html:multibox> in a table.
The values in the column are
Fea's Car
Joe's Car
In the DispathAction when tried to see the values of the selected items.
it's
Fea's ------ why is the value different?
I tried to use LabelValueBean in the multibox. Still it's the same.
How to fix this?
As long as the values are fine in the Action.execute method's ActionForm
parameter, you should be fine. When you use special characters like the
single-quote in values, struts escapes them before sending them to the
web browser (try viewing the HTML source in your browser), and the
browser decodes them when rendering the form. Then when the browser
sends them back, it encodes the values the same way. Struts gets these
values and translates them back into the original form before putting
them in your form bean. I would suggest a couple of things to check:
- Has Struts populated your form bean before you tried viewing the
values, or are you looking at the unencoded values in the DispatchAction
class?
- Make sure you're using struts to output the values, and not
scriptlets, which don't encode the values properly.
- Scott
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]