Re: [Stripes-users] How to iterate on a list

2011-05-20 Thread Rusty Wright
Make sure your jsp starts with the correct song and dance for GAE: <%-- isElIgnored="false" needed for GAE --%> <%@ page contentType="text/html;charset=ISO-8859-1" language="java" isELIgnored="false" %> The critical line is the isElIgnored in the <%@page directive. See the

Re: [Stripes-users] How to iterate on a list

2011-05-20 Thread Laurent Pellegrino
I running it on GAE but I get the same behavior in the development server that run in my local machine (Mac Os X). On Fri, May 20, 2011 at 9:01 PM, Stone, Timothy wrote: > What platform are you running this on? > > > > Thanks, > > Tim > > > > From: Laurent Pellegrino [mailto:laurent.pellegr...@gm

Re: [Stripes-users] How to iterate on a list

2011-05-20 Thread Laurent Pellegrino
> Hi Laurent, > can you try to add the following to your jsp: > ${actionBean.results} > and write what the output is? I got my.package.MyObject@7de91c98, my.package.MyObject@96dd3c2, my.package.MyObject@e1631af4, my.package.MyObject@93754dd9] Hence, I think there is something wrong in the foreach

Re: [Stripes-users] How to iterate on a list

2011-05-20 Thread Stone, Timothy
What platform are you running this on? Thanks, Tim From: Laurent Pellegrino [mailto:laurent.pellegr...@gmail.com] Sent: Friday, May 20, 2011 1:22 PM To: stripes-users@lists.sourceforge.net Subject: [Stripes-users] How to iterate on a list Hi all, I have an ActionBean which has the

Re: [Stripes-users] How to iterate on a list

2011-05-20 Thread Richard Hauswald
Hi Laurent, can you try to add the following to your jsp: ${actionBean.results} and write what the output is? Regards, Richard On Fri, May 20, 2011 at 7:22 PM, Laurent Pellegrino wrote: > Hi all, > I have an ActionBean which has the following field with its associated > getter and setter: > priva

[Stripes-users] How to iterate on a list

2011-05-20 Thread Laurent Pellegrino
Hi all, I have an ActionBean which has the following field with its associated getter and setter: private List results; The ArrayList is created and populated in the DefaultHandler method. Then, I want to print the results list value in my JSP. The JSP file contains the following lines: ${resul