Skip to content

xdev-software/vaadin-simple-grid-filter

Repository files navigation

Published on Vaadin Directory Latest version Build Quality Gate Status Vaadin 24+

vaadin-simple-grid-filter

A simple Vaadin Flow component for filtering Grids.

demo

Note

If you are looking for a more advanced component you may check out our grid-filter.

Usage

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

Installation guide for the latest release

Compatibility with Vaadin

Vaadin version Grid-Filter version
Vaadin 24+ (latest) 1+

Run the Demo

  • Checkout the repo
  • Run mvn install && mvn -f vaadin-simple-grid-filter-demo spring-boot:run
  • Open http://localhost:8080
Show example

demo

Support

If you need support as soon as possible and you can't wait for any pull request, feel free to use our support.

Contributing

See the contributing guide for detailed instructions on how to get started with our project.

Dependencies and Licenses

View the license of the current project or the summary including all dependencies