I have a Ext.EditorGridPanel (with Ext.grid.RowSelectionModel) class with four columns and many rows. The user is allowed to edit the cells, but after edit it and press ENTER or TAB, I want that the cell editor opens automatically on the next row (not the next column, as the default is), at the same column index.
I tried to use the method startEditing(row,column) on afteredit event, but without success.
Any suggestion? Thank you.
Use the
keysconfig option of theeditorgrid. It accepts anObjectofKeyMap. Check the docs here. If that doesn’t work, catchkeypressevent and check if the key matchesExt.EventObject.ENTERthen do your thing!