angular-csv-ext icon indicating copy to clipboard operation
angular-csv-ext copied to clipboard

Helper library for create CSV file in Angular.

Results 19 angular-csv-ext issues
Sort by recently updated
recently updated
newest added

The show label option as per the read-me file is supposed to print the headers with the key values of but it does not do anything

Hi, I would like to add a hyperlink as a value to a column I'm creating, anyway doing it? Can't see it in the documentation

probably is me but in the csv all the row are in one cell how i can divide in multiple cell like a b c name surname email // //...

var options = { fieldSeparator: ',', quoteStrings: '"', decimalseparator: '.', showLabels: true, showTitle: true, useBom: true, noDownload: false, headers: ["Reason of Duplication", "Model Record No"] };

If there is nested structure in the data, how will it be transferred into csv? var data = [{ name: "name1", nested: { nestedName: "nestedName1" } }];

If you add any methods on Array/Object prototype then the `for in` loop from `getBody()` method will try to export it. https://github.com/alhazmy13/angular-csv-ext/blob/master/Angular-csv.ts#L136 As a fix I would suggest using the...

import { AngularCsv } from 'angular-csv-ext/dist/Angular-csv'; instead of refering to Dist every time, how can i use it as npm package ?

Trying to create an CSV file with multiple headers. Is there a way for this feature using this package. Any help will be greatly appreciated. Thanks.

Hi Everyone, I use this library with angular-8.2.3 and this is working fine, but i get this script-error on app bootstrapping: > Uncaught ReferenceError: exports is not defined at Angular-csv.js:2...

Hey, I was wondering what this library's algorithm is for ordering columns when exporting. On my end it seems to be random. Is there a way to assign a specific...