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.
grid refresh with nested containers
hi, need help.
BeanItemContainer containerContracts;
GeneratedPropertyContainer containerMain;
containerContracts = new BeanItemContainer<>(Contract.class);
containerMain = new GeneratedPropertyContainer(containerContracts);
Grid grid = new Grid(containerMain);
...
// refresh
containerContracts.removeAllItems();
containerContracts.addAll(jpaController.findAll());
// not working
whats wrong?
Not enough information has been provided for anyone here to troubleshoot this issue further.
What are you expecting to happen, vs what is actually happening?
What do you mean by it's "not working"?
What does this line return?
jpaController.findAll()