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
Edit Mode on click:
afterSelectionEnd: function (r, c, r2, c2) {
if (r == r2 && c == c2) {
getActiveEditor().beginEditing();
getActiveEditor().enableFullEditMode();
}
}
When you add enableFullEditMode(); caret moves in the cell while pressing left or right button instead of jump to another cell.
Anaother example: only first row:
afterSelectionEnd: function (r, c, r2, c2) {
if (r == r2 && c == c2) {
if (r == 0 && r2 == 0) {
getActiveEditor().beginEditing();
getActiveEditor().enableFullEditMode();
}
}
}