diff --git a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/lib/grid/js/Grid.js b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/lib/grid/js/Grid.js index 47fc7869692af99c15a408a1f250e53fe986075a..b6388a4df94095542ae636e5505d0cd19b995d15 100644 --- a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/lib/grid/js/Grid.js +++ b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/lib/grid/js/Grid.js @@ -177,7 +177,16 @@ $.extend(Grid.prototype, { var tsv = $.tsv.formatRows(arrayOfRowArrays); var indexOfFirstLine = tsv.indexOf('\n'); var tsvWithoutNumbers = tsv.substring(indexOfFirstLine + 1); - var blob = new Blob([tsvWithoutNumbers], {type: 'text'}); + + // + var csvContentEncoded = (new TextEncoder("utf-16le")).encode([tsvWithoutNumbers]); + var bom = new Uint8Array([0xFF, 0xFE]); + var out = new Uint8Array( bom.byteLength + csvContentEncoded.byteLength ); + out.set( bom , 0 ); + out.set( csvContentEncoded, bom.byteLength ); + // + + var blob = new Blob([out], {type: 'text/tsv;charset=UTF-16LE;'}); saveAs(blob,'exportedTable' + namePrefix + '.tsv'); }