Hi,
I am using extremecomponents tag libraries for exporting table contents into a PDF. The code is working fine and able o export table contents to a PDF if i use
jsp resource as the action for the <ec:table>.
But getting problem if i use action class URL. The table getting hidden on clicking PDF icon. Others features of the table tag like sorting, filtering working prefectly.
My Code:
---------
<ec:table
items="listcomp"
action="${pageContext.request.contextPath}/showtable.action"
imagePath="${pageContext.request.contextPath}/images/table/*.gif"
width="60%"
rowsDisplayed="1">
<ec:exportPdf fileName="output.pdf" tooltip="Export PDF" headerColor="black" headerBackgroundColor="#b6c2da"/>
<ec:row>
<ec:column property="cid"/>
<ec:column property="cname"/>
<ec:column property="address"/>
</ec:row>
</ec:table>
I searched google..... gone though so many links... Not got the solution for my problem.
If anyone have idea.. please help me regarding this??
Thanks & Regards,
Polireddy