Open danielrpp opened 6 years ago
I had a table with approx. 2,300 rows. I didn't had the patience to let it finish loading. After your fix, it took around 30 seconds. Thank you!
@KMcCracken I like it to know that I have helped you!
Thank you for this. The change fixed an extremely slow load for me as well.
Excellent catch. I have a table of ~14K rows and this caused the export to change from "Page Unresponsive" to barely 10 seconds. Thanks!
Hi, I have detected a bug, on line 908 of js tableexport.js, you must replace
_nodesArray (context.rows) .map (function (val, ir)
by:
for (var i = 0; i <_nodesArray (context. rows) .length; i ++) (function (val, ir)
this helps considerably in the speed.