April 2018
Intermediate to advanced
202 pages
4h 48m
English
With this design, users can activate a field to edit a single value. Data can be presented in a tabular format, in which case, clicking a cell would activate an input field, which would allow the user to directly edit the value. The following figure shows an example of this kind of interface:

The Vaadin Framework allows this through the Grid.addComponentColumn method. The following line adds a Button to an existing Grid:
grid.addComponentColumn(user -> new Button("Delete", e -> deleteClicked(user)));
There are advantages and disadvantages of using this option. The main advantage is speed. Users can quickly edit a value, and ...
Read now
Unlock full access