ng-csv icon indicating copy to clipboard operation
ng-csv copied to clipboard

Simple directive that turns arrays and objects into downloadable CSV files

Results 102 ng-csv issues
Sort by recently updated
recently updated
newest added

I can use a promise to retrieve the rows for the csv file, but I cannot seem to use a promise to retrieve the header, e.g.: ``` $scope.getCSVExportFileHeader = function(){...

Hey there, I'm not sure what has changed, but I'm not getting any errors, or any results in **Google Chrome Version 65.0.3325.181 (Official Build) (64-bit)**. It seems like it tries...

I have a child window and when I download the CSV, it will automatically go to the parent window and download it. Is there a way for it to be...

Related to issue #225

I am using a String field to store Identification Numbers. When exporting the data to CSV, all leading zeros are removed. Is my String being treated as a Number during...

I used the example that is here and it does not work in Edge. Is there a fix for this? Thank you, Raghu

Thanks for very helpful little project! I just ran into Excel not opening the CSV file, bur displaying it as plain text. Turns out that _european_ version of Excel want...

Not all of my objects have the same properties. Some of the objects have additional fields at the end, but the column headers do not get displayed for these properties....

Hi, is there a way to allow the user to chose the path where to save the file? Basically use the "Save As" dialog.

I've added the encode option to allow explicit encoding to the desired charset. I'm using [TextEncoder](https://developer.mozilla.org/en-US/docs/Web/API/TextEncoder) for encoding which is available on Firefox and Chrome, and through this [shim](https://github.com/inexorabletash/text-encoding) on...