Edge Hangs, other browsers work fine.
Edge Hangs, other browsers work fine.
We are testing DataTables to see if it will work to our needs, and it's working great in every browser other than edge.
Are there any know fixes for edge?
It's just hangs for over 15+ seconds and then will load.
We are using the latest version of everything, direct from the download sections.
Link to site available by PM.
Modules used are :-
Buttons-1.2.4
ColReorder-1.3.2
DataTables-1.10.13
FixedHeader-3.1.2
jQuery-1.12.4
JSZip-2.5.0
pdfmake-0.1.18
Scroller-1.4.2
This question has an accepted answers - jump to answer
Answers
Thanks for the link by PM.
Its a DOM sourced table with 4.4k+ rows. That's going to take a little bit of a time to render in any page, and its doing IE in. I think even if you were to disable DataTables you'd still see the page takes a while to load. Its worse with DataTables since it needs to read the data from all ~50k cells. DOM operations are slow and the less they are used, the better!
The single change that you could make that will have the biggest impact on performance is to Ajax load the data and enable the
deferRender
option. You'll notice a major difference in Edge.There is an example here and the Ajax manual also has details.
Regards,
Allan