I have a modal component. it used to close on press of escape button. now I have a select option within it. when i press the tab with select option and do the escape to come out of the select element, now my popup as well getting closed. i tried with adding stopPropagation but not works.
here is the html: confirmCancel() method getting triggered
<ibo-custom-modal [isTable]="true" [showModal]="addItemPop" [title]="title" (modalClosed)="confirmCancel()">
<div (keydown)="($event); $event.stopPropagation()">//not works
<select (keydown)="calling($event)">//tried here as well
<option>one</option>
<option>two</option>
<option>the</option>
</select>
</div>
</ibo-custom-modal>