2013-12-10 76 views
0
<af:commandButton text="Export to Excel" 
        binding="#{backingBeanScope.backing_ReportHealthCheck.cb1}" 
        id="cb1" partialTriggers="t1"> 
    <af:exportCollectionActionListener type="excelHTML" exportedId="t1" 
             filename="ValidateResults.xlsx" 
             title="ValidateResults"/> 
    </af:commandButton> 

我用這個將導出的adf表與集合導入到Excel中,並且工作正常。 但我的要求是出口adf表與收藏成pdf.If任何人在這個問題上的幫助。 我需要在不在jsp頁面的JSF頁面中執行此操作。將收藏內容導出爲pdf格式在adf中

回答