Hi All, I need to urgently find out how to resolve a problem without using additional javascript.
I have a jsp page with an array of objects. <logic-el:iterate name="list" id="List1" indexId="ctr" scope="session"> <tr> <td><bean:write name=" List1" property="statusDescription"/></td> <td><bean:write name=" List1" property="vendorNumber"/></td> <td><bean:write name=" List1" property="createDate"/></td> <td><bean:write name=" List1" property="amendmentNumber"/></td> <td><bean:write name=" List1" property="amendmentDate"/></td> <td><html-el:checkbox indexed="true" name=" List1" property="checkAccepted"/></td> <td><html-el:checkbox indexed="true" name=" List1" property="checkDownload"/></td> <td><html-el:checkbox indexed="true" name=" List1" property="checkASN"/> <html-el:text indexed="true" name=" List1" property="asn" size="20" maxlength="50" /></td> </tr> </logic-el:iterate> When I check a checkbox and click on the submit button the data is pulled through in the form I can redirect the page back to the JSP and the checkbox is still selected. This is fine, but then when I deselect the checkbox the property in the form should be adjusted and this doesn't happen. Please tell me if anybody knows why? Kr Neil Meyer --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

