-
Notifications
You must be signed in to change notification settings - Fork 379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Advanced Filtering #746
Comments
Nothing about the component implementation requires that Customizing the former to setFilter({
age: a => (x <= a && a <= y),
categories: [cat1, cat2],
name: nameSubstring
}) In other words, if |
I need this functionality for what I'm doing so will make a PR against this hopefully in the next few days. Cheers, Ben |
This was exactly what I needed as well. Thank you @benoj for hooking this up. |
Hey,
Like the project, jut wondering if it is possible to do more advanced filtering across multiple fields e.g. say with row data
{ name: "Bob", age: 20, categories: ["male","young"] }, { name: "Alice", age: 49: categories: ["female", "middle-age"]
Would it be possible to search by:
a) age between x and y
b) which categories a person is in
c) text search on name
From docs it looks like its just text across all of the properties? Are the more advanced searches that I am talking about possible?
Thanks,
Ben
The text was updated successfully, but these errors were encountered: