TableExport
TableExport copied to clipboard
The simple, easy-to-implement library to export HTML tables to xlsx, xls, csv, and txt files.
Bumps [xlsx](https://github.com/SheetJS/sheetjs) from 0.14.1 to 0.17.0. Changelog Sourced from xlsx's changelog. CHANGELOG This log is intended to keep track of backwards-incompatible changes, including but not limited to API changes and...
Fixes #193 , Here is a summary of the changed 1. Performance improvement during load: in the previous version, the html-table is parsed on page load and the parsed data...
Hello, I'm trying to use this plugin in a project I'm writing in asp.net core web application. So far I have installed TableExport by adding "devDependencies": { "tableexport": "5.2.0", "bootstrap":...
My code is: var ExportButtons = document.getElementById('dynamic-table'); var instance = new TableExport(ExportButtons, { formats: ['xlsx'], position: "top", header:true, filename: 'Supplier_', ignoreCols: 7, trimWhitespace: true, exportButtons: false, htmlContent: true, sheetname: 'Supplier...
TableExport is excellent. it is helping me much. While using this library, I found an issue. If a cell contains long string, xlsx file shows wrong value "#####################.... " This...
I want to pass data dynamically constructed from array like in these 2 situations: 1. ``` var data = [ {field1: "...", field2: "...", ...}, ... ] ``` 2. or...
It would be useful to be able to run TableExport from PhantomJS, to test websites or as a means to programatically/non-interactively export tables from websites **Describe alternatives you've considered** Normal...
We've got a table where some td's contains text while others contain an input. Inputs seems to be ignored by tableexport. Any plans to support this behaviour? Example: ```html ```
If you have a large table with tons of rows, the TableExport script seems to freeze and causes the browser to crash due to a slow and non-responsive script. This...