Fixed #3328 - DataTable: exportData exclude column footers

This commit is contained in:
Tuğçe Küçükoğlu 2023-01-27 11:47:41 +03:00
parent a7fe4d96db
commit c1a961c07e

View file

@ -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;