Reputation: 1431
I start using microstream as persistence storage for my Vaadin 24.3.5 SpringBoot 3.2.2 app.
I have a CRUD with some rows using a ListDataProvider
.
After edit a certain row item (a DTO) by clicking the edit column button and using the CRUD editor, the modified row item / dto is shown properly. The grid row contains the new/updated values.
After clicking the edit column button immediately again for the same row, the CRUD editor remains empty, no item / dto can the modified. After reload the whole page or edit another row, the edit is possible again.
I've tried also a CallbackDataProvider
with an explicitly set identifierGetter ... same result.
The DTO is a simple customer
with 4 string attributes, equals()
and hashCode()
are implemented manually (no Lombok) appropriately.
What I'm doing wrong ?
Upvotes: 1
Views: 57