This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hello. I have a problem with <html:form> tag that is inside <logic:iterate> tag. Here is code : <html:form action="Note.do?action=addNote" name="noteForm" type="note.NoteForm"> <Table> <logic:iterate id="Note" name="noteForm" property="notes"> <TR> <TD> <html:hidden name="Note" property="net" indexed="true"/> <bean:write name="Note" property="net"/> </TD> <TD> <html:hidden name="Note" property="nc" indexed="true"/> <bean:write name="Note" property="nc"/> </TD> <TD> <html:text name="Note" property="note" size="16" maxlength="16" indexed="true"/><br> </TD> </TR> </logic:iterate> </Table> <html:submit property="submit" value="MAJ"/> </html:form> I have a form NoteForm with a property notes (Collection). When I initialise the page, all the information are present. But when i submit nothing have changed. It 's always the same values in the collection. Is it possible to use the same collection for getting eand setting a collection ? What could be the problem? Please, help. Gizzmo
Would you mind posting your ActionForm? I think I see what you're trying to do (and how to fix it) but it's hard to give advice without seeing the ActionForm.
A good workman is known by his tools.
Hakim Myster
Greenhorn
Joined: May 23, 2005
Posts: 1
posted
0
Hello, i have the same problem. I search for a solution if u have it ! An invoice contains many articles, I must allow to insert lines represent articles inside an invoice.