This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let headers = []; | |
| document.querySelectorAll('.tabulator-col').forEach(header => { | |
| let text = header.innerText.trim(); | |
| headers.push(text || ''); // Handle empty headers | |
| }); | |
| let rows = []; | |
| document.querySelectorAll('.tabulator-row').forEach(row => { | |
| let rowData = []; | |
| row.querySelectorAll('.tabulator-cell').forEach(cell => { |