Editor inline edit keypress enter
Editor inline edit keypress enter

Is possible edit a cell and when press enter key pass to edit cell below?
This question has an accepted answers - jump to answer
This discussion has been closed.
Is possible edit a cell and when press enter key pass to edit cell below?
This question has an accepted answers - jump to answer
Answers
Best option is probably to listen for the
key
event (assuming you are using KeyTable), and on return move the focus down a cell (cell().focus()
). There isn't a built in way to do what you are looking for.Allan
Thanks.