Editor inline edit keypress enter
Editor inline edit keypress enter
sergio.ams
Posts: 6Questions: 3Answers: 0
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.
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.