Hi,
I need some help changing a behavior that is defined in the editor manager. Currently, whenever an arrow button is pressed the cell editor is closed. That is done by this piece in the editor manager:
case KEY_CODES.ARROW_UP:
if (_this.isEditorOpened() && !activeEditor.isWaiting()) {
_this.closeEditorAndSaveChanges(ctrlDown);
}
moveSelectionUp(event.shiftKey);
event.preventDefault();
stopPropagation(event);
break;
Is there any way I can change it to prevent the following piece? So that I can keep a cell editor but still be able to use the arrow buttons to change my selection?
if (_this.isEditorOpened() && !activeEditor.isWaiting()) {
_this.closeEditorAndSaveChanges(ctrlDown);
}