2013-12-10 28 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中

回答