Handsontable provides some nice hooks for when a cell is selected but I can\'t seem to figure out way to get it to allow me to force a cell into edit mode when it has been s
For anyone intersted in this question, now there is a better programmable way to achieve the same result.
this.selectCell(row, col); this.getActiveEditor().beginEditing();
This selects the (row, col) cell and enters edit mode (i.e. same as double click or pressing F2/Enter).
(row, col)