SearchPane and Multi-Select
SearchPane and Multi-Select
Hey,
Quick question: Is it possible to change the logic from "or" to "and" when selecting multiple filters within a SearchPane?
Example:
SearchPane "Custom Filters":
- Age below 20
- Age above 20
- Has kids
The filters work fine, but if I select "Age below 20" + "has kids", I end up with all rows that are either below 20 years; or has kids. But I would like to get the "intersection"; meaning I'd like to see only rows that are below 20 years old and have kids.
Thank you,
Andreas
This question has an accepted answers - jump to answer
Answers
You can set
columns.searchPanes.combiner
to useand
logic instead of the defaultor
,Colin
Thank you @colin, you are a beast!