I have the following code in my jsp page for a form.
<logic:iterate id="curInstallation" name="theinstallations" >
<bean:write name="curInstallation" property="theInstallation" />
<html:select name="curInstallation" property="theChoice" >
<html:option value="ALL">ALL</html:option>
<html:option value="SOME">SOME</html:option>
<html:option value="NONE">NONE</html:option>
</html:select>
<html:hidden name="curInstallation" property="theInstallation" />
</logic:iterate>
Everything is being populated properly and then I move on to my form where I
can extract out each of these items into their individual string arrays. Is
there a way to store the name/value of each of the selected items into an
array of LabelValueBeans instead of separate string arrays? I've searched
through the mailing list and documentation and see information on using the
html:optionsCollection to display the info on the page, but can't find any
information on writing back to a collection instead of separate string
arrays. Any assistance (and code snippets if possible) would be greatly
appreciated.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>