Hi
I have igx-select in an edit template of a column in an igx-grid.
To activate it on switching to the edit mode I've decorated it with igxFocus='true'.
The problem is that on next 'enter' the select pops up but then gets closed automatically by the grid due to leaving of the edit mode
https://stackblitz.com/edit/github-srbuis-dpvliy
The question is how to open the popup on the fist 'enter' stroke or at least prevent closing on the second.
Thank you!
public handleSelectKeyDown(event) { if (event.key === "Enter") { event.stopPropagation(); } }
Thank you, Bozhidara, you solution works.
I'm just wondering if there is a way to do that in a centralized fashion besides inheritance?