I think this should work (but obviously it doesn't).  Can anyone tell me why?
 
    <% int i = 0; %>
    <logic:iterate id="list" name="adminUpdateProfileForm" property="customerContacts">
       <tr>
        <td><html:text property="customerContact[<%=i++%>].contactName"/></td>
       </tr>
    </logic:iterate>
 
Where getCustomerContacts() returns a vector of CustomerContact objects &
    getCustomerConact(int offset) returns an CustomerContact element from that vector.
 
thanks,
jeff
 

Reply via email to