updating elements in a collection
Hey. I'm trying to update the objects in a collection that is displayed on a jsp. Everything loads fine, the collection displayed using logic:iterate, but the on of the fields in each record is a checkbox and on form submit, my changes to the checkbox is not on the form! Anyone know how I can force the form to update the checked item in the collection? Any help will be greatly appreciated :)
<logic:iterate id="language" name="languages" type="za.co.intelleca.vodacom.application.entity.display.LanguageDisplay">
<tr align="center" valign="top" class="th" bgcolor="<%=colour%>">
<td align="left"><bean:write name="language" property="name" /></td>
<td align="left"><bean:write name="language" property="description" /></td>
<td align="center"><html:checkbox name="language" property="checked" value="<bean:write name='language' property='checked'/>" /></td>
</tr>
</logic:iterate>
where the form has a LanguageDisplay[] lanaguages and I get/set the []

