Matt hey everyone i'm using webix grid and trying to make it behave more like excel. what i need specifically is the navigation to be like when you edit a cell and then press enter it moves down. anyone knows how to tweak that? kinda stuck here.
NastassiaM Hello Matt, Please take a look at this example: https://snippet.webix.com/l01k55y2. This customization handles the Enter key (key code 13) in the onKeyPress event. It uses getEditor() to identify the currently edited cell and data.getNextId() to find the next row. If a next row exists, editing moves down to the same column. If you’re on the last row, the findNextEditableCell() function determines the next editable column (based on which columns have editors) and starts editing from the first row in that column.