停止导出按钮和复选框列

时间:2013-12-09 10:36:09

标签: java jsf primefaces datatable

我有一个dataTable,其中两列分别是复选框和按钮。复选框列是空白列,但按钮显示为“org.primefaces.component.commandbutton.CommandButton @ 13c643”。如何打印这些列以将dataTable导出为ex​​cel?

感谢。

1 个答案:

答案 0 :(得分:1)

试试这个

通过此属性可以忽略exportable =“false”列

来自p:dataExporter ..

中的导出
<p:column exportable="false" >
    <p:commandButton 

    </p:commandButton>
</p:column>