Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=3787386
By: khsibr

mlotfi

to access to your data from a JSP, you have to put it in request scope or 
session
scope.

//code to put an object in the request scope
request.setAttribute("listElements", list);


Then, in the JSP, you can load your object and use it as an entry
to displayTag:


//code to get the object from request scope
<jsp:useBean id="listElements" scope="request"
                type="objectClass" />

khsibr

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=249317


_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to