TableTools generates strange symbols
TableTools generates strange symbols
sergioz
Posts: 2Questions: 0Answers: 0
Hello, when i try to generate csv, excel or only copy to clipboard my datatable, datatools generates a csv or xls with a 1 only strange symbol like this , my datatables obtain information from ajaxsource using json format directly, no server side.
Thanks for all!
Thanks for all!
This discussion has been closed.
Replies
The BOM for the XLS (UTF16-LE) is required if you want it to work in Excel - the BOM for the CSV less so. You can disable it using TableToolsInit.oBom.bCsv = false and TableToolsInit.oBom.bXls = false;
Allan
Thanks for all!