ValueChangeListener missing in Vaadin Grid?

My goal it to automatically set each row to “editable” mode upon arrow up/down navigation.

In the Table component I believe the answer would be to override the valueChange method in the ValueChangeListener.
This listener appears to be missing in Vaadin Grid.

Does anyone have any suggestions on how I might mimmic the same effect using Vaadin Grid in
7.6.0.alpha2

Thanks

SelectionListener may help you.

SelectionListener won’t work that well for Arrow up/down as in the Grid the Arrows won’t really “Select” the rows but rather mark them with a blue rectangle.
This has been/is currently discussed in this thread
https://vaadin.com/forum#!/thread/10793528
and i also wrote a small extension to"solve" this problem though the logic in the extension isn’t that great and needs some work performce-wise.

Actually, the solution offered by @Marius Reinwald in the above mentioned thread fixes the problem.

Thanks