Thanks for the pointers. I did eventually get it working by using <%=cList%> as the name and did find the second item.
Thanks for the heads up, I assumed :( it started at the pageContext and worked up the stack to find the beans. Richard -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rick Herrick Sent: Monday, June 05, 2006 7:12 AM To: displaytag-user@lists.sourceforge.net Subject: Re: [displaytag-user] No table displayed Richard Calosso wrote: > <display:table name="clist" > > <display:column property="conent" title="Stuff"/> > </display:table> Two issues: * You're setting the clist object as an attribute in the pageContext. By default, displaytag looks at the request context. Try either setting the clist with the request (request.setAttribute()) or scoping the name attribute (name="pageContext.clist"). This scope issue is one to always be aware of, since it frequently causes people issues. * You have property="conent" and that should be property="content". That will eventually give you some kind of discovery or reflection error, since your bean won't have a "conent" property. But I think you're not getting to the point where that's an issue, since it's not finding the list and thus can't evaluate the beans. -- Rick Herrick [EMAIL PROTECTED] I haven't got time for inner peace. "No reasonable definition of reality could be expected to permit this."--Albert Einstein, Boris Podolsky and Nathan Rosen in 1935 _______________________________________________ displaytag-user mailing list displaytag-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/displaytag-user _______________________________________________ displaytag-user mailing list displaytag-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/displaytag-user