--- Hari Saptoadi <[EMAIL PROTECTED]> wrote: > Hi all..... > i want to use displaytag for replace logis:iterate tag > is it "name" in display:table tag have same function with > "property" in logic:iterate ? > if not, how can i set data that i want to display in my jsp ? >
The front page of their website says: http://displaytag.sourceforge.net/ " <display:table name="${requestScope.object.property}"> " Here is a link to their PDF manual: http://displaytag.sourceforge.net/displaytag.pdf Another example would be: // in your Action class List productList = generateProductList(); request.setAttribute("productList",productList); <!-- on your JSP page --> <display:table name="${productList}" /> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]