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 values.get(key); } } In Jsp I have something like below Map based Form works well for others except multibox or select with multiple=true In setValue, The Object value always String and not String array that is what I expect for multibox or multiple select Since this is String, the form is selected with just one selection the first selection.. Please help.... -- View this message in context: http://www.nabble.com/Map-based-Struts-Action-Form-and-multibox-Issue-tp15623494p15623494.html Sent from the Struts - User mailing list archive at Nabble.com.