Export Hyperlink from html table to XLSX with sheets js #2188
Labels
No Label
DBF
Dates
Defined Names
Features
Formula
HTML
Images
Infrastructure
Integration
International
ODS
Operations
Performance
PivotTables
Pro
Protection
Read Bug
SSF
SYLK
Style
Write Bug
good first issue
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#2188
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi
i have an html table with an hyperlink field, when trying to export to xlsx the hyperlink become plain text.
try to find some info in the web or some examples without success -
if possible to provide an example it can be great -
attached some source code :
my defectsTable hyperlink:
<td> <a target="_blank" href=anyLink>1157253</a></td>
export to xlsx :
`function runXLSX() {
function s2ab(s) {
var buf = new ArrayBuffer(s.length);
var view = new Uint8Array(buf);
for (var i=0; i<s.length; i++) view[i] = s.charCodeAt(i) & 0xFF;
return buf;
}
`
18ce6212c4