I have 5 columns in my table, and how is it possible to make one of the columns invisible? is it any standard approach for that, or maybe, can I use css for that?
How to hide column in filteringtable vaadin 7?
2k Views Asked by vlcod At
2
There are 2 best solutions below
1

You need to allow column collapsing in your table
table.setColumnCollapsingAllowed(true);
After that, you can collapse or hide any column
table.setColumnCollapsed("columnId", true);
An example:
FilterTable table = new FilterTable("The Brightest Stars");
// Define two columns for the built-in container
table.addContainerProperty("Name", String.class, null);
table.addContainerProperty("Mag", Float.class, null);
// Allow column collapsing
table.setColumnCollapsingAllowed(true);
// Hide column "Name"
table.setColumnCollapsed("Name", true);
In case you just don't want to show them at all, use setVisibleColumns on the Table:
(also
setContainerDataSource
) allows passing the visisible columns)