导出PrimeNG表中的特定列

时间:2019-03-21 16:34:30

标签: angular primeng

我正在尝试将表格导出为CSV。我只想导出特定的列。 我在HTML中尝试以下代码:

 <button type="button"  (click)="myTable.exportCSV(['craNotValidated'])" ></button>

但是执行时,出现此错误: enter image description here

任何帮助,

1 个答案:

答案 0 :(得分:1)

您需要通过选择

(click)="dt.exportCSV({selectionOnly:true})"

请参阅文档以获取参考 https://www.primefaces.org/primeng/#/table/export