> I'm using struts 1.2.7 and I've got what seems like should be a rather
> simple task to complete. I've got a form that lists an arbitrary
[quoted text clipped - 6 lines]
> <logic:iterate id="file" name="folder" property="newFiles"
> type="foo.FileLister">
I had a similar problem, although not with a dynamform. The fix was to give
the id and property the same value
> <html:text name="fileStuffForm" property="extinfo" indexed="true"/>
> ...
[quoted text clipped - 4 lines]
> the text box gets the name "fileStuffForm[0].extinfo" which I believe
> is correct.
shouldn't this be fileStuffForm.extinfo[0] ?
>The struts config for this form looks something like this.
> <form-bean name="fileStuffForm" dynamic="true" >
[quoted text clipped - 16 lines]
> Thanks in advance for any help,
> A Paeth