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 there are very long lists, the performance is very poor.
We would like to have an option to do virtual scroll, which will render only the items on the viewport with some offset.
What is the expected behavior?
Make a template directive like NgFor:
<md-list [virtualScroll]="list">
<md-list-item *virtualItem="let item; let i = index">
Item {{i}}
</md-list-item>
</md-list>
What is the current behavior?
None, currently all the list renders with ngFor. So the performance for thousands of items can be very poor
Which versions of Angular, Material, OS, browsers are affected?
All
The text was updated successfully, but these errors were encountered:
Bug, feature request, or proposal:
When there are very long lists, the performance is very poor.
We would like to have an option to do virtual scroll, which will render only the items on the viewport with some offset.
What is the expected behavior?
Make a template directive like NgFor:
What is the current behavior?
None, currently all the list renders with ngFor. So the performance for thousands of items can be very poor
Which versions of Angular, Material, OS, browsers are affected?
All
The text was updated successfully, but these errors were encountered: