I'm facing a scenario where I have a grid with rows. When a user double clicks on a cell, a cell editor opens up. There are events associated with the cellEditor - cellEditingStarted and cellEditingStopped, but I need an event that triggers just before the cell editor opens.
Basically, I want to perform some action when a user double clicks on a cell before the cell editor pops up. Is there a way to achieve this? I couldn't find anything in the documentation.
My goal is to have a custom cell editor appear from the grid, but when the grid is near the bottom of the screen, the cell editor is partially hidden. To work around this, I added a div under the grid that expands its height when a row is added. However, I'm struggling to get it to scroll properly when a cell is double clicked.
https://i.sstatic.net/PsfrU.png Thanks!