Hi everyone, I have a problem using for the first time the 'Iterate' tag :
I have an ArrayList in a formBean. I want to update display information about each object (of class bcSortiRecord) contained in the array list and also that the user can modify some fields of the same object. My problem is that, when I submit the form, I get nothing in the ArrayList. How can I keep track of this arraylist. in the formBean: ----------------------- private ArrayList tableBcSorti = new ArrayList(); public ArrayList getTableBcSorti() { return tableBcSorti; } public void setTableBcSorti( ArrayList tableBcSorti ) { this.tableBcSorti = tableBcSorti; } public void addToTableBcSorti( int i, bcsortiRecord bcsRecord ){ this.tableBcSorti.add(bcsRecord); } public bcsortiRecord getBcSorti(int index){ return (bcsortiRecord)tableBcSorti.get(index); } in the Jsp page: ----------------------- <logic:iterate name="bcsortieForm" property="tableBcSorti" id="tablebcs" type="fa7net.business.bc_sorti.bcsortiRecord" indexId="index"> <tr> <td><bean:write name="tablebcs" property="num_fiche"/></td> <td><html:text name="" name="tablebcs" property="price" size="25" maxlength="21" /></td> </tr> </logic:iterate> Thanks for any help ! Veronique Gaboreau.