Skip to content
Snippets Groups Projects
Commit d4ddab9a authored by juanf's avatar juanf
Browse files

SSDM-1072 : PAPER - Extend data grid with export

SVN: 32678
parent 369f64d4
No related branches found
No related tags found
No related merge requests found
...@@ -79,7 +79,7 @@ $.extend(Grid.prototype, { ...@@ -79,7 +79,7 @@ $.extend(Grid.prototype, {
var csv = CSV.objectToCsv(data, {columns: headings}); var csv = CSV.objectToCsv(data, {columns: headings});
var blob = new Blob([csv], {type: 'text'}); var blob = new Blob([csv], {type: 'text'});
saveAs(blob,'exportedTable.txt'); saveAs(blob,'exportedTable.csv');
}); });
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment