Re: Map backed Struts Action Form and multiple select values issue

2008-02-22 Thread MoorthyHome.com
More details to my previous posting... I am building an app with Struts 1.x, which is dynamically rendered at runtime to create html form elements. Because of the applications dynamic nature, I am using map backed struts action form to dynamically capture the values in a HashMap. Unfortunately,

Map based Struts Action Form and multibox Issue

2008-02-21 Thread MoorthyHome.com
I am using map based Struts action form Something like below... public FooForm extends ActionForm { private final Map values = new HashMap(); public void setValue(String key, Object value) { values.put(key, value); } public Object getValue(String key) { return