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.I am using struts2 with display 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
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user