We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adfc83c commit f16cdb0Copy full SHA for f16cdb0
src/features/exporter/js/exporter.js
@@ -666,8 +666,8 @@
666
loadAllDataIfNeeded: function (grid, rowTypes, colTypes) {
667
if ( rowTypes === uiGridExporterConstants.ALL && grid.rows.length !== grid.options.totalItems && grid.options.exporterAllDataFn) {
668
return grid.options.exporterAllDataFn()
669
- .then(function() {
670
- grid.modifyRows(grid.options.data);
+ .then(function(allData) {
+ grid.modifyRows(allData);
671
});
672
} else {
673
var deferred = $q.defer();
0 commit comments