I have an ngFor creating rows in a table that is both filtered and paged.
-
2020-12-06 05:16
One way is to use template variables with @ViewChildren()
@ViewChildren('myVar') createdItems;
ngAfterViewInit() {
console.log(this.createdItems.toArray().length);
}