I have a select list populated from a collection of LabaelValue beans, as follows:
<html:select name=”baseForm” property=”productType” size=”10″ multiple=”true”>
<html:optionsCollection name=”baseForm” property=”productTypeOptions” />
</html:select>
The values as stored correctly in the productType array. However, I’d like to retain the Labels as well for a confirmation page later on – this is a wizard type app.
Is there an easy way to do this?
Thanks in advance.