Articles and Lessons tagged with ngFor

ngFor – Working with Large Lists in Angular

ngFor – Working with Large Lists in Angular

Posted Sep 14, 2018 | | By Maina Wycliffe | Angular
ngFor is directive that iterates through a list of data and instantiates a template for each item in the list. It does an amazing job when dealing with small list. The issue with ngFor is that it loads everything on DOM, which is slow – possibly …
Read More