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.

TUTORIALVaadin lets you build secure, UX-first PWAs entirely in Java.
Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Calling javascript synchronously by Enver Haase, 2 weeks ago
Column filters in grid
Hi,
I see in the grid example in the sampler - http://demo.vaadin.com/sampler/#ui/grids-and-trees/grid/features
A drop down menu with the column acting as a hide/show filter for grid columns.
How is that used? I saw no mention of that in the documentation.
Thanks
Last updated on
Hi!
You can make a column hideable by calling
grid.getColumn(colId).setHidable(true);
and if you want it hidden to start with just call
column.setHidden(true);
as well.
Last updated on
You cannot reply to this thread.