HalitTalha / ng-material-extensions

Extended features for @angular/material components
Apache License 2.0
101 stars 52 forks source link

Support UTF-8 BOM during csv saving #70

Closed esaesa closed 4 years ago

esaesa commented 4 years ago

The exported csv is opened by excel as ANSI encoded by default, So the non latin characters is not shown directly. The workaround for this is to set BOM bytes before the content as follow https://github.com/eligrey/FileSaver.js/issues/28#issue-15333709 image

esaesa commented 4 years ago

63