I am trying to use struts 2 and can not figure out how to do the following
that I could in struts 1.3
<logic:iterate name="person" property="addresses" id="address"
indexId="ctr">
<html:text name="address" property="addrLineOne" indexed="true" />
<html:text name="address" property="addrLineTwo" indexed="true" />
<html:hidden name="address" property="id" indexed="true"/>
</logic:iterate>
is there still a way to do this in struts 2 so I can update / add / remove
child list objects?
thanks,
John