zsusac / ReactHTMLTableToExcel

Convert HTML table to Excel file and download
MIT License
103 stars 59 forks source link

File-Extension #21

Open PersonablePhaniK opened 4 years ago

PersonablePhaniK commented 4 years ago

Hi,

I need to change file-extension from '.xls' to '.xlsx'. I couldn't find how to do it.

Aravindraj92 commented 4 years ago

Hi Did you get a solution?

tanushri2296 commented 4 years ago

any update?

sonam-diwate-invimatic commented 4 years ago

same requirement here need to change file-extension from '.xls' to '.xlsx'.

dqve commented 3 years ago

I tried the following to fix this issue and it seems to work:

To change the file extension of the downloaded file, modify

var filename = String(this.props.filename) + '.xls' 

to

var filename = String(this.props.filename) + '.xlsx' 

at line 124 in index.js