Reputation: 643
I have a UI-Grid and i need to export it to CSV. The problem is that the export has a comma (",") delimiter and for european versions of excel, I need a semicolon (";") delimiter. Is there any way i can set the csv delimiter in Ui-Grid, or to add an extra-line ("sep=;") to the csv file ?
Upvotes: 1
Views: 1799
Reputation: 731
Within your controller set the gridOptions exporterCsvColumnSeparator variable to ";".
$scope.gridOptions.exporterCsvColumnSeparator = ';';
See here at line ~210 for the relevant ui-grid/exporter.js code
Upvotes: 4