Ionic 5 - ion-select close popover from code

What I’m trying to achieve is to have ion-select with ion-select-options in it, but I don’t want popover to show once I click on it… Is there a way to achieve this? Is this even possible to do? - I would guess there’s something like interface=“none”? Or maybe this can be done by css? I know it a weird thing to do but I need such a feature…Thanks in advance.

I think you can disable the Click Event complete if that is want you want? For disabling the Click Event you can use pointer-events: none; in CSS

Hi there, yeah that’s great idea, but i have to preserve (ionFocus) event… Which doesn’t get triggered anymore if I use pointer-events:none. I have tried using cursor: not-allowed; as well but with no luck.