ng-csv
ng-csv copied to clipboard
Simple directive that turns arrays and objects into downloadable CSV files
Updates karma-phantomjs-launcher to 1.0.0. This change automatically updates the PhantomJS dependency from 1.x to 2.x. PhantomJS 2.x supports Function.prototype.bind, allowing the tests to run as expected.
Added a new option sepHeader. It allows to add a new header in csv so it can support multiple columns when the file is open using excel
Angular `$compileProviders`'s default link whitelist (e.g. list of safe links) is defined as `/^\s*(https?|ftp|mailto|tel|file):/`. But [this line here](https://github.com/asafdav/ng-csv/blob/master/src/ng-csv/ng-csv.js#L12) adds some additional protocols and accidently removes `tel:` links from the whitelist....
I know we can order the columns using csv-column-order, but is there anyway to sort the data?
Added option to sort the data by a particular column name. Supports ascending and descending sort by passing the column name with '-' sign.
Escape the field with double quotes if it contains a double quote in the value. This is specified in the [RFC](https://www.ietf.org/rfc/rfc4180.txt) as follows: > 6 . Fields containing line breaks...
Hi all, As the plugin doesn't work in IE9, I took some hints from other similar issues ([#3](https://github.com/asafdav/ng-csv/issues/3)) and created a pull request for you. Existing tests are failing and...
I am able to generate a csv with headers "A, B, C" via "csv-label = true" If I additionally specify a column order via "csv-column-order = C, B, A", the...