Is it possible to nest forEach loops and have the html:text input fields work correctly?
My JSP code: <c:forEach items="${applicationForm.schools}" var="school"> <tr> <td> <html:text indexed="true" name="school" property="name"/> </td> </tr> <c:forEach items="${school.courses}" var="course"> <tr> <td> <html:text indexed="true" name="course" property="courseTitle"/> </td> </tr> </c:forEach> </c:forEach> Within the second loop, input field names are rendered as course[0].courseTitle rather than the required school[0].course[0].courseTitle. Any ideas on nesting these loops? I'd rather stick with JSTL and html-el rather than the nested taglib. -- Voytek Jarnot Quantum materiae materietur marmota monax si marmota monax materiam possit materiari? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]