I am using ngFor to loop through items. I want to invoke a specific method invokeAfterngForisComplete(). How can I achieve that ?
Here is the ngFor loop
<div *ngFor="let banner of oBanners">
<a class="btn mr-2" *ngIf="!btn.feedbackery_id"
[href]="btn.link" target="_blank"
{{ btn.text }}
</a>
</div>
In my controller, I want to call invokeAfterngForisComplete()
method after all the items in the ngFor loop are rendered.