RE: logic:iterate does not iterate more than once, although collection definitely contains more elements

2003-02-13 Thread Jerome Jacobsen
My guess is that you aren't really using the logic:iterate tag because you forgot the taglib directive at the top of your JSP. If you do a view source from your browser I'm guessing you'll still see the logic:iterate tags in the output HTML. -Original Message- From: mech [mailto:[EMAIL

RE: logic:iterate does not iterate more than once, although collection definitely contains more elements

2003-02-13 Thread Sri Sankaran
The reason is that you are closing out the logic:iterate too soon! Look at the code you have sent, the logic:iterate ... ends with a /. What you need, as you know, is logic:iterate id=... property=... !-- whatever -- /logic:iterate Sri -Original Message- From: mech [mailto:[EMAIL

Re: logic:iterate does not iterate more than once, although collection definitely contains more elements

2003-02-13 Thread Joakim Olsson
If that is a copy-paste of your code I guess you want to remove the extra / at the end of your logic:iterate. Best regards, Joakim Quoting mech [EMAIL PROTECTED]: Hi, I have been using logic:iterate for quite a while, but now I'm stuck. Using Struts 1.1b2 on Tomcat 4.1.18. This code