Hi
I am using following code for exporting all data from a table to excel and pdf. It works ok with the columns, but I can“t export the footer and caption tag. <%@ taglib prefix="s" uri="/struts-tags"%> <%@ taglib prefix="sx" uri="/struts-dojo-tags"%> <%@ taglib uri="http://displaytag.sf.net" prefix="display"%> <jsp:directive.page import="org.displaytag.sample.*" /> <display:table name="sessionScope.persons" export="true" pagesize="2"> <display:setProperty name="export.excel.filename" value="Person List.xls"/> <display:setProperty name="export.pdf.filename" value="Person List.pdf"/> <display:setProperty name="decorator.media.pdf" value="org.displaytag.sample.decorators.ItextTotalWrapper" /> <display:setProperty name="decorator.media.excel" value="org.displaytag.sample.decorators.HssfTotalWrapper" /> <display:setProperty name="export.pdf" value="true" /> <display:setProperty name="export.excel" value="true" /> <display:setProperty name="export.csv" value="false" /> <display:setProperty name="export.xml" value="false" /> <display:caption media="html"> <strong>A Caption</strong> </display:caption> <display:caption media="excel pdf">A Caption</display:caption> <display:footer media="html"> <tr> <td colspan="4"><strong>Sample footer</strong></td> </tr> </display:footer> <display:footer media="excel pdf">Sample footer</display:footer> <display:column property="id" title="ID" /> <display:column property="name" title="NAME"/> </display:table> Expecting your kind interaction Thanks in advance Rakesh -- View this message in context: http://old.nabble.com/struts-2-display-tag-export-problem-tp27819962p27819962.html Sent from the Struts - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org