A simple Vaadin Flow component for filtering Grids.
Note
If you are looking for a more advanced component you may check out our grid-filter.
Here is a very simple example how the FilterComponent can be used:
Grid<Person> grid = createGrid();
FilterComponent<Person> filter = new FilterComponent<>(grid)
.withFilter(new SimpleFilterField<>(Person::getLastName, "Lastname"));
this.add(filter, grid);
To get started further it's recommended to have a look at the demo.
A description how to get it running can be found below.
Important
This component is designed for "in memory" filtering of small to medium sized amounts of data.
Note
Filtering multiple thousand items with complex filtering conditions can drastically impact performance and make the UI unresponsive!
In these cases it's recommended to use backend filtering solutions like database queries or search engines like ElasticSearch in combination with a customized UI search framework. If you need help in implementing these feel free to contact us.
Installation guide for the latest release
Vaadin version | Grid-Filter version |
---|---|
Vaadin 24+ (latest) | 1+ |
- Checkout the repo
- Run
mvn install && mvn -f vaadin-simple-grid-filter-demo spring-boot:run
- Open http://localhost:8080
If you need support as soon as possible and you can't wait for any pull request, feel free to use our support.
See the contributing guide for detailed instructions on how to get started with our project.
View the license of the current project or the summary including all dependencies