On 06/16/2011 01:45 AM, nicolas savoini wrote:
> Hello
>
> I'am starting to try to use indexed property.
> But i got an error.
>
> Here what i have
> - The manager
> package com.nsa.n74.tvshowtrackerweb.servlet.stripes;
> public class TvshowManager
> public List<TvShow>  getAllTvShows()
> {
> List<TvShow>  tvshows;
> testDB tt= new testDB();
> tvshows = tt.getTenTvShow();
> tt.closeSession();
> return tvshows;
> }
>
> -My jsp : linktvshow.jsp
> <jsp:useBean id="tvshowManager" scope="page"
> class="com.nsa.n74.tvshowtrackerweb.servlet.stripes.TvshowManager"/>
> <stripes:form action="/linkTvShow.action">
> <c:forEach items="${tvshowManager.AllTvShows}" var="tvshow" varStatus="loop">

I think that should be items="${tvshowManager.allTvShows}" with 
lowercase "a" although I have to admit that I never tried with a capital 
letter and have no idea what is actually looked for if you capitalise 
the first letter here...

>
> thanks
> Nicolas

Thomas

------------------------------------------------------------------------------
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
_______________________________________________
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to