You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a redraw is called for the grid, it calls elementHeight which calls the swap function on the pagination control (even if the controls are disabled by enablePaginationControls: false).
swap then iterates through a list of properties causing a reflow each time.
On IE11 this happens a large number of times effectively stalling the main thread.
There should be no need to call any kind of DOM reads/writes for this if enablePaginationControls == false,
The text was updated successfully, but these errors were encountered:
When a redraw is called for the grid, it calls elementHeight which calls the swap function on the pagination control (even if the controls are disabled by enablePaginationControls: false).
swap then iterates through a list of properties causing a reflow each time.
On IE11 this happens a large number of times effectively stalling the main thread.
There should be no need to call any kind of DOM reads/writes for this if enablePaginationControls == false,
The text was updated successfully, but these errors were encountered: