Hi,

I'm using a map-backed property to get the data from a run-time
generated form. If one of the controls in the form is a multi-select,
I only get the first selected option.

The form definition:
<form-bean name="myForm" type="test.MyForm">
    <form-property name="paramValue" type="java.util.Map"/>
    ...
</form-bean>

Setter method:
public void setParamValue(String paramId, Object value)

The select:
      <html:select property="paramValue(<%=paramName%>)" multiple="true">
          <html:options collection="entryes" property="key"
labelProperty="value"/>
      </html:select>

The setter is called only once having a String for value, even if  I
select multiple options.
Can anyone please give me a hint?

Thanks
-- 
Radu

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to