mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
Fixed #3328 - DataTable: exportData exclude column footers
This commit is contained in:
parent
a7fe4d96db
commit
c1a961c07e
1 changed files with 1 additions and 1 deletions
|
@ -1368,7 +1368,7 @@ export default {
|
|||
|
||||
if (i === 0) csv += '\n';
|
||||
|
||||
if (this.columnProp(column, 'exportable') !== false && this.columnProp(column, 'field')) {
|
||||
if (this.columnProp(column, 'exportable') !== false && this.columnProp(column, 'exportFooter')) {
|
||||
if (footerInitiated) csv += this.csvSeparator;
|
||||
else footerInitiated = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue