Correction:
 
<logic:iterate name="form1" property="object1.object2" id="id1"> 
<html:text name=" id1" property="property1" indexed="true"> 
</logic:iterate>
 
Looking at the source from IE, it generates something like 
<input type="text" name="id1[0].property1" value=""> 
<input type="text" name="id1[1].property1" value=""> 
<input type="text" name="id1[2].property1" value=""> 
...
 
Of course object2 is in object1, not in form1. That's why it doesn't
work.
 
Is there anyway to work around?


Reply via email to