RE: Iteration over Collection

2004-05-25 Thread Helios Alonso
you wrote: thanks .. any idea about the iteration itself? -Original Message- From: Helios Alonso [mailto:[EMAIL PROTECTED] Sent: 25 May 2004 13:47 To: Tag Libraries Users List Subject: Re: Iteration over Collection Remember that "${bean.property}" maps to "bean.getProperty()"

RE: Iteration over Collection

2004-05-25 Thread Allistair Crossley
thanks .. any idea about the iteration itself? -Original Message- From: Helios Alonso [mailto:[EMAIL PROTECTED] Sent: 25 May 2004 13:47 To: Tag Libraries Users List Subject: Re: Iteration over Collection Remember that "${bean.property}" maps to "bean.getProperty()"

Re: Iteration over Collection

2004-05-25 Thread Helios Alonso
Remember that "${bean.property}" maps to "bean.getProperty()" so arraylist.size doesn't do the trick. At 08:36 25/05/2004 -0400, you wrote: It looks like you're using JSTL 1.1 so you can use its length function: <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"; %> ${fn:length(r

Re: Iteration over Collection

2004-05-25 Thread Kris Schneider
It looks like you're using JSTL 1.1 so you can use its length function: <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"; %> ${fn:length(requestScope.newStarters)} Quoting Allistair Crossley <[EMAIL PROTECTED]>: > Hi guys, simple but annoying problem .. have been following do

Iteration over Collection

2004-05-25 Thread Allistair Crossley
Hi guys, simple but annoying problem .. have been following documentation but does not happen for me. I have a ArrayList in the request as "newStarters". I have tried the following: Attempt 1 = <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %> x Atte