You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by manishkashyap09 <ma...@gmail.com> on 2011/08/16 10:54:40 UTC

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

use the following getter and setter

public void setValues(String key, Object[] value) {
    values.put(key, value);
}
	
public Object[] getValues(String key) {
    return values.get(key);
}

it works for me.

--
View this message in context: http://struts.1045723.n5.nabble.com/Map-backed-Struts-Action-Form-and-multiple-select-values-issue-tp3476210p4703806.html
Sent from the Struts - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@struts.apache.org
For additional commands, e-mail: user-help@struts.apache.org