angular-ui/ui-grid

ui-grid causing too many DOM reflows on IE11

Open

#5,855 opened on 2016年12月7日

GitHub で見る
 (1 comment) (1 reaction) (0 assignees)JavaScript (2,496 forks)batch import
Browser IEhelp wantedseverity: performance

Repository metrics

Stars
 (5,395 stars)
PR merge metrics
 (30d に merged PR はありません)

説明

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,

コントリビューターガイド