I got the nightly build from Apache.
Using the new iterate tag with "indexed", I am able to put the form
values on the page with get, but set doesn't seem to work with second
level form beans

<logic:iterate name="form1" property="object1.object2">
<html:text name="object2" property="property1" indexed="true">
</logic:iterate>

Looking at the source from IE, it generates something like
<input type="text" name="object2[0].property1" value="">
<input type="text" name="object2[1].property1" value="">
<input type="text" name="object2[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?


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to