Can we find which cell we are editing on afterDocumentKeyDown event

Tags: #<Tag:0x00007f8b28633070>

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?

Hi @siddhantjain15298

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.