alhazmy13 / angular-csv-ext

Helper library for create CSV file in Angular.
MIT License
45 stars 23 forks source link

How to download the csv file? #39

Closed jigs1212 closed 5 years ago

jigs1212 commented 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);
shadisafadi commented 5 years ago

remove the "noDownload" property, that worked for me

madhav5589 commented 5 years ago

Set noDownload flag to false and it will work.