Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
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 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