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

the json object : [{"id":"696931","name":"myname","status":[{"plan":"2015-08-21","env_name":"one name"},{"plan":"2015-08-21","env_name":"one other name"}]},{"id":"696932","name":"myname1","status":[{"plan":"2015-08-22","env_name":"one name"},{"plan":"2015-08-22","env_name":"one other name"}]}] give the result : 696931;myname;[object Object],[object Object] 696932;myname1;[object Object],[object Object] as you can see there is not recursive parsing

Hi, I want ng-csv to download a file only after some validations. Is there any hook to execute validation code and prevent downloading if something is wrong? Thanks.

Found an issue when using ng-csv to export a file in conjunction with some validation. I was finding that the ng-csv would still trigger the download, even when the validation...

Hi, ng-csv="getProfiles()" skip-empty="false" filename="Profile_{{getDateTime| date:'EEEE, dd MMMM yyyy HH:mm:ss'}}.csv" field-separator="," decimal-separator="">Export Profile $scope.getProfiles = function () { var exportProfiles = []; profileManager.getProfileView() .then(function (result) { var lastRecord = []; $scope.getDateTime...

If you set field-separator then the delimiter will be added to fields that use coma, regardless of what field-separator is used. Expected behavior is to add text-delimiter to fields that...

Hi, I try to change default charset for csv file `Export` But when I download and save file it saved with UTF-8 encoding What did I do wrong?

Is there any options available to format the excel ? for ex : want to change the color of cells, styles of the text (Size,font etc)

I am using angular ng-csv directive to download the csv file. Sometimes it is not downloading the file. The data in the file may huge and When it is not...

I am using ng-table to create a table with pagnation, after filter, can I export the table with the related data? thx

In Safari, the generated CSV file is not downloaded, but rather displayed to the user in a new tab as a blob file. This is in Safari 9.0.1 on OS...