TableExport
TableExport copied to clipboard
The simple, easy-to-implement library to export HTML tables to xlsx, xls, csv, and txt files.
Any time a cell contains a "Carriage Return" followed by "Linefeed" characters, the export will render the text over multiple rows when exporting into `.xls` file **To Reproduce** Steps to...
I don't know what is going wrong but the demos are not working correctly. When I click to **export to xlsx** the table is plain without any format or style...
In the table there is one field "money" the data in it is written with spaces in the format 123 345 678.00 Is it possible to remove spaces from numbers...
Table cells that contains commas are usually ignored if not causing misalignment, so we check if the text string contains a comma to escape it. ``` ((val.textContent.indexOf(',') > -1) ?...
How hard would it be to copy to the contents to the clipboard so that it could be pasted into an excel file rather then having it save to a...
Was wondering how hard it would be to have the option to remove commas if the value about to be written for a cell is a number without the comma....
Hi there, Great Library, when exporting to xls using exportButtons false, I seem to be getting the error message: **The file format and extension don't match** Using library v5.0.2, running...
I'm running an Angular 4 application and when I switch in and out (several times, like more than 10) into the component that uses the library, I get the following...
Hi, When setting the filename config it sets the file name and spreadsheet name to be the same. any way to configure the sheet name differently than the file name?...