Can you give me a hint, please? After editing a cell and pressing enter, how can I automatically move to the next cell of the selected column end open it for edit?
I thought I could do it like this, but it doesn’t work.
` onKeyDown($event: KeyboardEvent) {
if ($event.key === 'Enter' && this.grid.activeCell.colIndex === 9) {
this.grid.focusCell(this.grid.activeCell.rowIndex + 1, this.grid.activeCell.colIndex);
this.grid.editCell(this.grid.activeCell.rowIndex+1, this.grid.activeCell, this.grid.activeCell.dataItem);
}
}`