I have a list of entries that I am looping through and fore each entry I have add a row to a table. I have about 2000 entries so it takes a second for the table to render. How would I limit this down to 50 or 100?
<ng-container *ngFor="let entry of entries">
<tr *ngIf="entry['name'].startsWith(filter)">
<td>{{ entry.name }}</td>
</tr>
</ng-container>
This question is different from this one because I still want the rows to be there I just want only 100 to be shown at a time.