I am trying to add click event inside the template of list box in prime Ng but event is not listened below is the stackblitz code and demo link.
Below is the code
<h5>Single</h5>
<p-listbox [options]="cities" [(ngModel)]="selectedCity" optionLabel="name" [style]="{'width':'15rem'}">
<ng-template let-country pTemplate="item">
<div class="country-item">
<div>{{country.name}}</div>
<a (click)="editProject('hii')"><i class="pi pi-pencil"></i></a>
</div>
</ng-template>
</p-listbox>
https://stackblitz.com/edit/primeng-listbox-demo-dxcpdt?file=src/app/app.component.ts