Hello,
the old Table component had a very convenient way of inline editing all cells. I like to produce something like that with the grid (Unfortunately Table is now deprecated).
I’m trying to use the grid in unbuffered mode:
grid = new Grid<>();
grid.getEditor().setEnabled(true);
grid.getEditor().setBuffered(false);
Now I doubleclick on a row to open the editor. But after that there is no way to close the editor! The ENTER key does not work if there is only one row in the grid or if the last row is selected.
Is this a bug (I’m using Vaadin 8.0.6)?