RE: Iterate over an ArrayList of arrays

2010-05-11 Thread Martin Gainty
Thank You > Date: Tue, 11 May 2010 09:22:44 -0500 > Subject: Re: Iterate over an ArrayList of arrays > From: elephant...@gmail.com > To: user@struts.apache.org > > It just refers to the top of the value stack. > > -Brian > > > > On Tue, May 11, 2010 at 9:17 AM

Re: Iterate over an ArrayList of arrays

2010-05-11 Thread Brian Thompson
It just refers to the top of the value stack. -Brian On Tue, May 11, 2010 at 9:17 AM, James Cook wrote: > Where does 'top' come from? > - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-m

RE: Iterate over an ArrayList of arrays

2010-05-11 Thread James Cook
Where does 'top' come from? -Original Message- From: Dale Newfield [mailto:d...@newfield.org] Sent: 11 May 2010 14:49 To: Struts Users Mailing List Cc: Steven Yang Subject: Re: Iterate over an ArrayList of arrays On 5/11/10 5:59 AM, Steven Yang wr

Re: Iterate over an ArrayList of arrays

2010-05-11 Thread Dale Newfield
On 5/11/10 5:59 AM, Steven Yang wrote: try ${top[0]} Except you're using EL here to access OGNL. I'd suggest this is cleaner: value="%{top[0]}"/> -Dale - To unsubscribe, e-mail

Re: Iterate over an ArrayList of arrays

2010-05-11 Thread Thomas Lulé
It works ! Thank you very much. 2010/5/11 Steven Yang : > try > >                       ${top[0]} >               > > On Tue, May 11, 2010 at 5:52 PM, Thomas Lulé wrote: > >> I just found an ugly solution : >> >>         >>                 >>                         >>                        

Re: Iterate over an ArrayList of arrays

2010-05-11 Thread Steven Yang
try ${top[0]} On Tue, May 11, 2010 at 5:52 PM, Thomas Lulé wrote: > I just found an ugly solution : > > > > > > /> >

Re: Iterate over an ArrayList of arrays

2010-05-11 Thread Thomas Lulé
I just found an ugly solution :

Iterate over an ArrayList of arrays

2010-05-11 Thread Thomas Lulé
Hi, I've got an ArrayList named "breadcrumbs" in my action that I would like to display in my JSP. Something like : ${value[0]} I want to iterate over the ArrayList, then get the two values of the array, but this code obv