<p>I have a collection of beans and within each of those beans is a collection of another type of bean. When I use the following code the values display correctly. However the problem is when the page submits the set methods of the inner bean never gets called. All of the data changed on the outer bean is updated and the inner bean remains unchanged. Is there a trick to this? How do I ensure the set methods are called. Thanks in advance!
<P><nested:iterate property="members" id="members" indexId="index"></P> <P><tr></P> <P><%System.out.println("stop"); %></P> <P> <td><nested:checkbox property="status" name="members" indexed="true" value="C"/></td></P> <P> <td class="fldNameL"></P> <P> <nested:text name="members" property="name" indexed="true" /></P> <P> <nested:hidden name="members" property="rowStatus" indexed="true"/></P> <P> </td></P> <P></tr></P> <P><tr></P> <P> <td>Coverage:</td><td><nested:text name="members" property="coverage" indexed="true" /></td></P> <P></tr></P> <P><tr></P> <P><td>PCP:</td><td><nested:text name="members" property="PCP" indexed="true"/></td></P> <P></tr></P> <P> <tr><td>Dependents</td></tr></P> <P> <nested:iterate property="dependents" id="dependents" indexId="index1"></P> <P><tr></P> <P> <td>Name:</td></P> <P> <td><nested:text property="name" indexed="true"/></td></P> <P></tr></P> <P><tr></P> <P> <td>PCP</td></P> <P> <td><nested:text property="PCP" indexed="true" /></td></P> <P></tr></P> <P></nested:iterate> </P> <P><tr></P> <P> <td colspan="2">-----------------------------------------------------------------------</td></P> <P></tr></P> <P></nested:iterate></P> -- View this message in context: http://www.nabble.com/Nested-Collections-and-Beans-t1819411.html#a4960778 Sent from the Struts - Dev forum at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]