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
During Ivy development @rkaraivanov noticed that removing the cdr.detectChanges() call before the scroll checker increases rendering performance by a significant margin. We should invest time to determine if this breaks anything and possibly fix it. At a first glance the grid functions correctly but this detection cycle is most likely indirectly taken advanged of during tests and this is why a lot of them fail
The text was updated successfully, but these errors were encountered:
Cleaned up most of the DOM handlers to use `fromEvent` thus avoiding
manual removing of event handlers.
Use the resize observer as an actual observable, removing the extra grid
subject for proxying the calls.
Finally removed the `ngOnChanges` hook in the cell as it was obsolete
since #3767 and #3916.
Closes#6031
Description
During Ivy development @rkaraivanov noticed that removing the
cdr.detectChanges()
call before the scroll checker increases rendering performance by a significant margin. We should invest time to determine if this breaks anything and possibly fix it. At a first glance the grid functions correctly but this detection cycle is most likely indirectly taken advanged of during tests and this is why a lot of them failThe text was updated successfully, but these errors were encountered: