With Vaadin Grid, I want to generate multiline cells for every cell that have more content in cell that overlaps its width.
I have allready tried:
java
Have you tried to add a style renderer to your ceolumns to add a custom css class, where you can place your defined height?
Example:
Java:
grid.setCellStyleGenerator(cellRef -> // Java 8
"heigher");
CSS:
.v-grid-cell.heigher {
height: 10em;
}
Example coming from: https://vaadin.com/docs/-/part/framework/components/components-grid.html