Render a list like such, pretty common
<ion-list>
<ion-item *ngFor="let item of items" (click)="handleItemClick($event)">
{{item.title}}
</ion-item>
</ion-list>
Though it looks pretty inefficient, especially the list goes very long. My question is that is event delegation possible in this case with Angular 2 and ionic 2? If so, how?
I’m aware of Virtual Scroll, which changes the rendering itself so that’s not particularly to the topic. Although the incentive doing event delegation is still relevant.
Thanks.