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.
Using Table with BeanItemContainer
Hello Guys,
I'm trying to use and fill up a table with BeanItemContainer. Here comes the result.
http://www.picupine.com/8a0ac09x
My questions are :
- 1. How can I display only certain columns, what to do if I need the some column but not all of them to display.
- 2. How can I control the display order of the columns ?
- 3. Based the picture above when I click on one of the rows the form is transformed to 'AFTER CLICK' form. How can control the form fields to display.
All in all , I dont want to display all the columns, and I dont want to edit all the columns by the form.
Thanks for the answers in advance.
Hunmal
- 1. How can I display only certain columns, what to do if I need the some column but not all of them to display.
https://vaadin.com/book/-/page/components.table.html
table.setVisibleColumns(new Object[] {"date", "quantity", "price", "total"});