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
Because of the event registration "ionic.on('resize', rerenderOnResize, window)" in collectionRepeat the following code will be called in the condition (secondaryScrollSize = 0)
collectionRepeatManager.resize();
Because of the secondaryScrollSize=0, the function "calculateSize" will believe all the items should be rendered as first item.
The final result is collectionRepeat will render every item in the datasource, which normally will be thousands. This will cause the serious performance issue.
The text was updated successfully, but these errors were encountered:
This will defeat the whole performance improvement. The issue is triggered by the event "resize"
Because of the event registration "ionic.on('resize', rerenderOnResize, window)" in collectionRepeat the following code will be called in the condition (secondaryScrollSize = 0)
collectionRepeatManager.resize();
Because of the secondaryScrollSize=0, the function "calculateSize" will believe all the items should be rendered as first item.
The final result is collectionRepeat will render every item in the datasource, which normally will be thousands. This will cause the serious performance issue.
The text was updated successfully, but these errors were encountered: