html5 excel won't work on table without a footer
html5 excel won't work on table without a footer
cigaar
Posts: 4Questions: 1Answers: 0
in Bug reports
Hi Allan,
Small typo in buttons.html5.js, line 523:
Replace:
if ( config.header ) {
xml += addRow( data.footer );
}
with:
if ( config.footer ) {
xml += addRow( data.footer );
}
Cheers and keepup the good work!
Patrick
P.S. Congrats on your update extravaganza, I've been playing with it and it's really good
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Sorry didn't see that you already fixed it:
https://github.com/DataTables/Buttons/commit/c11301d5f23d1edd3f91012786fcc687c4759c7a
Thanks
Found the same bug.
If you download buttons.html5.js from this site, then there is this bug.
1.0.1 will be released later today with the fix.
Allan