[F] Get HTML Table Object by ID and then create workbook Object. #2570
Replies: 4 comments
-
Hi @Siemienik, Is this feature available in version 4.4.0? |
Beta Was this translation helpful? Give feedback.
-
No, it was auto closed as not active |
Beta Was this translation helpful? Give feedback.
-
And are you planning to implement it? |
Beta Was this translation helpful? Give feedback.
-
Indeed, currently, I have other pressing priorities. However, being an open-source initiative, contributions are highly welcome. I'd encourage you to join our Discord community for more detailed discussions. You can also reach out via consulting@siemienik.com to discuss prioritizing features or other collaboration opportunities. Your involvement can indeed accelerate the implementation process. |
Beta Was this translation helpful? Give feedback.
-
🚀 Feature Proposal
Get already populated
Motivation
It is not always the case that we have to recreate the
Example
const example = document.getElementById("exampleTable");
const wb = new ExcelJS.Workbook();
const sheet = wb.addWorksheet("Sheet1");
sheet.addHtml(example); //---->>such method to transform Html Table to data objects.
Beta Was this translation helpful? Give feedback.
All reactions