HI, I have a Formbean from which I receive Data and put it in to my JSP site, this works fine. The data will be displayed in a table and two of the colums are input fields where the user should change the value. Here is a peace of my JSP
<table border="0" > <html:form action="/saveFVKNAction" method="post" > <logic:iterate name="fvknList" id="line" indexId="lineNo" type="FormValueKeyName"> <tr> <td><%=lineNo.intValue()+1%></td> <td><bean:write name="line" property="fieldName" filter="true" /></td> <td><html:text name="line" property="dispName"/></td> <td><bean:write name="line" property="dispLang" filter="true" /></td> <td><html:text name="line" property="sortOrder" size="3" /></td> <td><bean:write name="line" property="lastUpdate" filter="true" format="dd.MM.yyyy HH:mm:ss" /></td> </tr> </logic:iterate> </table> <html:submit /> </html:form> So my Problem is that I want to save those two columns in my Database but I can not fill my ActionForm for this Action with these values. I get only the first row of the colum. In the ActionForm I have setter and getter for the property dispName and sortOrder. How can I save a whole column in my ActionForm?? Can I save a List? I tried it and looked in several books but I found till now no answer or a other solution. Thanks for your help. -- GMX DSL = Maximale Leistung zum minimalen Preis! 2000 MB nur 2,99, Flatrate ab 4,99 Euro/Monat: http://www.gmx.net/de/go/dsl --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]