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.
merge table columns
hi,
how can we create two rows with different no of columns in vaadin table, i mean one row with combined column values can someone give one example for this. something like this.
index | column1 | column2 |
--------------------------------------
row1
--------------------------------------
row2 | | |
--------------------------------------
Hi,
It's not possible to merge cell on Table. It's possible to merge headers and footers on Vaadin Grid, though it's still not possible to merge actual content cells.
A possible solution would be to use a GridLayout to build your table as desirable.