Posted 14 December 2017, 9:45 am EST
Is there a way to move the cell edit over to the next column without exiting edit mode, when using
keyActionEnter = ```MoveAcross
It seems like it always goes out of edit mode when you hit ENTER, no matter what ```
keyActionEnter
``` is set to.
I am using vanilla JS.
Here is an attempt of mine. I have been trying out different things for a few hours, so it may be a little messy, but it shows the problem:
http://jsbin.com/yonikoqiga/1/edit?js,console,output
1. Change "Type" column and hit Enter
2. See that collection changed
3. Change "Name" column and hit Enter
4. See that collection changed again
When the user changes Type, the Name dataMap is updated with new values. If the Name cell's current value is not present in the updated dataMap then I want to force the user to select a new value.
I want to do all this while staying in edit mode, so the collection is only updated once.
Is this possible?
