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.
<%@(protected)"%>
<%@(protected)"%>
<%@(protected)"%>
<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
--
Sent from the Struts - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)