Closed jigs1212 closed 5 years ago
How to download the file?
my code
var options = { fieldSeparator: ',', quoteStrings: '"', decimalseparator: '.', showLabels: true, showTitle: true, title: 'Your title', useBom: true, noDownload: true, headers: ["id", "title", "sort_order"], nullToEmptyString: true, }; this.myfile = new Angular5Csv(response, 'My Report', options);
remove the "noDownload" property, that worked for me
Set noDownload flag to false and it will work.
noDownload
false
How to download the file?
my code