Hi. I have
<button ion-item>
<p>
some text
<button ion-button small round outline (click)="someFunction($event);">
</button>
</p>
</button>
someFunction(event: Event) {
event.stopPropagation();
alert('test');
}
the button inside the button with ion-item directive, never triggers the click event. I tried calling stopPropagation(); but didn’t work. Tried z-index = 1000000 for the inner button, but didn’t work.
Any idea?