vaadin-grid Questions

1

Using Vaadin 22+ I'm trying to display some dynamic html in a Vaadin Grid, using a LitRenderer. This could previously be achieved using the now-deprecated TemplateRenderer using this hack var templ...
Boar asked 1/3, 2022 at 1:33

2

Solved

With Vaadin 8 you could set a tooltip for a Grid cell. This feature is not available in Vaadin Flow (currently using v 11.0.0). Is there an alternative?
Ranchero asked 15/9, 2018 at 12:52

1

Solved

How do I add a row-index column to a grid, that will not be sorted along user-sorting of rows? The solution must not include changes to any polymer template, but should rather be done in java.
Apocalypse asked 28/5, 2020 at 9:34

5

Solved

I create simple grid with data from database: BeanItemContainer<Customer> container = new BeanItemContainer<>(Customer.class, customerRepository.findAll()); Grid grid = new Grid(contai...
Semiannual asked 6/8, 2015 at 16:44

2

In Vaadin 7.5.3, the Grid widget responds to the user pressing the Up (↑) or Down (↓) arrow keys by moving a highlight box around a single cell. If the user then takes a second action, pressing the...
Fredkin asked 8/8, 2015 at 22:49

1

Solved

I am using the vaadin-grid-filter with Polymer 2.x and I am facing the following problem. I have a vaadin-grid-column as following, <vaadin-grid-column width="15em"> <template class="hea...
Infralapsarian asked 28/5, 2018 at 11:14

7

Solved

Vaadin Grid allows to be defined as editable with grid.setEditorEnabled(true); This makes all visible columns editable. However I don't want the user to edit an specific column, but seems like t...
Agglomerate asked 17/6, 2015 at 9:8

2

Solved

Looks like GeneratedPropertyContainer does not exist in Vaadin 8. How can we add a generated column to Vaadin 8 Grid? I appreciate if you can provide an example.
Myke asked 6/4, 2017 at 22:24

1

Solved

I want to change the color of a Vaadin grid row based on a value of a cell. I tried it as follows and did not work. SCSS @import "mytheme.scss"; @import "addons.scss"; // This file prefixes all ...
Kowalczyk asked 30/6, 2017 at 8:48

1

In my previous project, I've used BeanItemContainer and a Table with GeneratedColumns to simply display a custom component that displays a search result, like google. Title, date, content in a vert...
Hydrology asked 1/9, 2016 at 16:53

3

Solved

I'm trying to display my boolean values as a checkbox in a vaadin grid. I can't use the multi selection mode because i need two columns with checkboxes. The columns of the Checkboxes shell have a C...
Backhand asked 7/11, 2016 at 11:59

2

Solved

Using vaadin (7.7.3) I'm filtering a grid by name, this filtering takes a couple seconds to remove the objects from the Grid gui. And so, if I click on that timelapse a row of the Grid which is rem...
Cumulous asked 19/10, 2016 at 8:44

2

In the new Vaadin 7.4 release, the new Grid widget debuted as an alternative to the venerable Table. After getting a Grid displayed, I later want to replace the entire set of data with fresh data....
Almund asked 23/3, 2015 at 6:53

4

Solved

What is the difference between the Grid and Table components in Vaadin 7? Which should I use, and when?
Deactivate asked 8/5, 2015 at 23:51

1

Solved

How do I make the new Grid widget in Vaadin 7 show all the rows of data (rather than scrolling)?
Inharmonic asked 27/3, 2015 at 21:10
1

© 2022 - 2024 — McMap. All rights reserved.