Is there a way of preventing going to the next cell after a cell has been edited?
I’d like to do that in certain cell types, ie: if next cell is of type dropdown, don’t move to next cell.
Thank you in advance
Is there a way of preventing going to the next cell after a cell has been edited?
I’d like to do that in certain cell types, ie: if next cell is of type dropdown, don’t move to next cell.
Thank you in advance
Hey @mcastro
have you tried enterMoves: {row: 0, col: 0}
?
Demo https://jsfiddle.net/AMBudnik/e7vyguL9/
Docs https://handsontable.com/docs/7.4.2/Options.html#enterMoves
That’s exactly what I was looking for, thank you very much!
You’re welcome