Hi,
Actually what we are implementing is whenever a user searches on autocomplete cell
we add a debouncer to it and load options from the query. Any event so that we can capture on which cell we are editing and also capture key events?
Can we find which cell we are editing on afterDocumentKeyDown event
To get currently edited cell you can use getActiveEditor() method: https://handsontable.com/docs/react-data-grid/api/core/#getactiveeditor but to get the key events you would need to use afterDocumentKeyDown separately.