Top "Vaadin-grid" questions

Vaadin Grid widget, for display of tabular data.

Vaadin - Refresh grid after row modification

I create simple grid with data from database: BeanItemContainer<Customer> container = new BeanItemContainer<>(Customer.class, customerRepository.…

java vaadin vaadin7 vaadin-grid
Vaadin Grid vs Table

What is the difference between the Grid and Table components in Vaadin 7? Which should I use, and when?

java datagrid vaadin vaadin7 vaadin-grid
Update Grid with a fresh set of data, in Vaadin 7.4 app

In the new Vaadin 7.4 release, the new Grid widget debuted as an alternative to the venerable Table. After getting a …

vaadin vaadin7 vaadin-grid
How to make only some columns editable in a Vaadin Grid?

Vaadin Grid allows to be defined as editable with grid.setEditorEnabled(true); This makes all visible columns editable. However I …

java vaadin vaadin7 vaadin-grid