Invalid character when exporting to Flash CSV

Asked

Viewed 34 times

1

inserir a descrição da imagem aquiWhen I export a DataGrid for .csv the characters of my header which contains invalid-formatted fictional accents.

private function onExportToCSV():void
        {
            var fileReference:FileReference = new FileReference();
            fileReference.save(DataGridDataExporter.exportCSV (dgLigacoes,';',';'),'LogLigacoes.csv');

        } 
  • This is probably because the two are with different encodings. Make them have the same encoding: Ex: utf-8

  • <?xml version="1.0" encoding="utf-8"? > already have this encoding

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.