https://github.com/xdev-software/vaadin-simple-grid-filter
A simple Vaadin Flow component for filtering Grids
https://github.com/xdev-software/vaadin-simple-grid-filter
Last synced: 10 months ago
JSON representation
A simple Vaadin Flow component for filtering Grids
- Host: GitHub
- URL: https://github.com/xdev-software/vaadin-simple-grid-filter
- Owner: xdev-software
- License: apache-2.0
- Created: 2024-10-09T06:08:02.000Z (about 1 year ago)
- Default Branch: develop
- Last Pushed: 2025-02-22T04:14:01.000Z (10 months ago)
- Last Synced: 2025-02-22T05:19:02.124Z (10 months ago)
- Language: Java
- Homepage: https://vaadin.com/directory/component/simple-grid-filter-for-vaadin
- Size: 1.09 MB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
[](https://vaadin.com/directory/component/simple-grid-filter-for-vaadin)
[](https://mvnrepository.com/artifact/software.xdev/vaadin-simple-grid-filter)
[](https://github.com/xdev-software/vaadin-simple-grid-filter/actions/workflows/check-build.yml?query=branch%3Adevelop)
[](https://sonarcloud.io/dashboard?id=xdev-software_vaadin-simple-grid-filter)

# vaadin-simple-grid-filter
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](https://github.com/xdev-software/vaadin-grid-filter).
## Usage
Here is a very simple example how the FilterComponent can be used:
```java
Grid grid = createGrid();
FilterComponent 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](./vaadin-simple-grid-filter-demo).
A description how to get it running can be found [below](#run-the-demo).
> [!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](https://en.wikipedia.org/wiki/Elasticsearch) in combination with a customized UI search framework. If you need help in implementing these feel free to [contact us](https://xdev.software/en/services/support).
## Installation
[Installation guide for the latest release](https://github.com/xdev-software/vaadin-simple-grid-filter/releases/latest#Installation)
#### Compatibility with Vaadin
| Vaadin version | Grid-Filter version |
| --- | --- |
| Vaadin 24+ (latest) | ``1+`` |
### Spring-Boot
* You may have to include ``software/xdev`` inside [``vaadin.allowed-packages``](https://vaadin.com/docs/latest/integrations/spring/configuration#configure-the-scanning-of-packages)
## 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

## Support
If you need support as soon as possible and you can't wait for any pull request, feel free to use [our support](https://xdev.software/en/services/support).
## Contributing
See the [contributing guide](./CONTRIBUTING.md) for detailed instructions on how to get started with our project.
## Dependencies and Licenses
View the [license of the current project](LICENSE) or the [summary including all dependencies](https://xdev-software.github.io/vaadin-simple-grid-filter/dependencies)