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.
multiple properties (set of properties) for item in Table
case: I have IndexContainer with some data about users, I use this container as data source for Table. Could I somehow put set of properties to one of Item`s of my IndexContainer or to merge some Table cells to have something like this -->
this is what I have -->
_________________________________________________________________
first name | second name | phone number | e-mail | login | registration date |
_________________________________________________________________
first name1 | second name1| phone number1 | e-mail1 |login1 | registration date1|
_________________________________________________________________
this what I want to have :) -->
_______________________________________________________
first name | phone number | e-mail | login | registration date |
second name |••••••••••|••••••••|••••••|•••••••••••|
phone number|••••••••••|••••••••|•••••••|•••••••••••|
________________________________________________________
first name1 | phone number1 | e-mail1 | login1 | registration date1 |
second name1 |•••••••••••• |••••••|•••••••|••••••••••••••••|
phone number1|••••••••••••|••••••|•••••••|••••••••••••••••|
________________________________________________________
(* "•••" - empty)
I found some issues which results could suit me -
But is there are already such tricks in vaadin ?