Help! Unable to send back muliple select options.....
// Define the Array
protected String[] geography;
// Get the Array
public String[] getGeography() {
return (geography);
}
// Set the Array
public void setGeography(String[] geography) {
{ this.geography = geography; }
}
**** Code In JSP Page ******
<html:select property="geography" multiple="true" size="2">
<html:options collection="cmProviderTypes" property="value"
labelProperty="label" />
</html:select>
This is only returning 1 value???
Has anyone done this successfully? I would really appreciate some help.
Thanks in advance,
Spencer