ng-csv
ng-csv copied to clipboard
Simple directive that turns arrays and objects into downloadable CSV files
I've gone through the issues and nothing is ever answered in a way that makes this work for me. Basic example: ``` var loadData = function() { var deferred =...
Please refer attachment. [2Headers.xlsx](https://github.com/asafdav/ng-csv/files/2097948/2Headers.xlsx)
quote-strings="true"
Using these attributes: `ng-csv="csv.generate()" quote-strings="true" lazy-load="true" csv-header="csv.header()" filename="timesheet.csv"` it seems that the `csv-header` and `filename` attributes are being ignored. I think the issues are here: [L41](https://github.com/asafdav/ng-csv/blob/master/src/ng-csv/directives/ng-csv.js#L41) `return $scope.filename || 'download.csv';`...
if (options.quoteStrings || data.indexOf(',') > -1 || data.indexOf('\n') > -1 || data.indexOf('\r') > -1) { data = options.txtDelim + data + options.txtDelim; } must be replaced by if (options.quoteStrings ||...
I use ng-csv a lot, and love it. Wanted to help fix a minor spelling issue in the readme. Thanks.
It works for me with my excel 2016, but with another computer and different version of excel, it puts all my data in on column divided by a comma. Thank...
if i want to send request and get response data when button click, this is not supportive for multiple file download from a page? ng-csv is loading first and its...