wolf-table / table

A web-based(canvas) JavaScript Table
MIT License
441 stars 47 forks source link

How to import / export excel file (.xlsx)? #11

Open Bayramooov opened 7 months ago

akhil-gautam commented 6 months ago

You may refer to https://docs.sheetjs.com/docs/demos/grid/xs @Bayramooov

dsills22 commented 4 months ago

@akhil-gautam that is for x-spreadsheet. And the Table interface has no loadData method. @Bayramooov you will have to take the value from stox and convert it to an array of type IndexDataCell[]. Then call .data({cells: yourConvertedArray}).render()

akhil-gautam commented 3 months ago

@dsills22 Yes sir, I just provided a reference.