I am following this GridUnbufferedInlinedEditor example.
-
This grid show all Persons.
-
But each time i double click on a row and update one of the columns, and click another row to save, first row becomes empty.
Click to update:
Click to update another row.
-
But if i click the first empty row, it seems that new updated data is there
-
If i only double click and not editing at all, all items are showed perfectly.
Grid get data from a static list
grid.setItems(List.of(
new Person(1, "Matthew", "test", "test@mail.com"),
new Person(2, "Lucas", "test", "test@mail.com"),
new Person(3, "John", "test", "test@mail.com")
));
I use vaadin flow 24.
What I have done wrong?
many thanks
sLawalata



