Could someone
confirm whether the fix for bug 260 made it into last night's build
(20010221).
If so, then I seem
to still have a problem.
My form bean has the
following getter:
public int[]
getApplications() {
return (this.applications);
}
return (this.applications);
}
My page has the
following:
<html:select
multiple="true" property="applications">
<html:options collection="<%=ants.infrastructure.cc.web.Constants.APPLICATIONS_KEY%>" property="id" labelProperty="name" />
</html:select>
<html:options collection="<%=ants.infrastructure.cc.web.Constants.APPLICATIONS_KEY%>" property="id" labelProperty="name" />
</html:select>
The 'id' property of
the object in the collection is an int.
As before, the
select box is only displaying the first element of the array returned by the
form bean's accessor.
Any help would be
appreciated.
Mark

