i have problem with filters in Vaadin. Its easy to make filters for each column in Grid. But now i need to do one filter for all cells in Grid. I don't know how to do this.
I was trying to do this like in this example, but it doesn't worked
Filter f =
new Or(new SimpleStringFilter(Columns.SEARCH.id(), "rpm-diastolic", true, false),
new Or(new SimpleStringFilter(Columns.SEARCH.id(), "rpm-systolic", true, false)),
new Or(new SimpleStringFilter(Columns.SEARCH.id(), "rpm-weight", true, false))) ;
container.addContainerFilter(f);