Multiple Dropdown for query filter
Hello All,
I have a multiple dropdown that have values ex. "ACTIVE", "PENDING, "INACTIVE". I need to display all the details with a status like ACTIVE and PENDING. However, I can't do it using a!queryFilter. Here's my line up code for filter.
a!queryFilter(
field: "status",
operator: "includes",
value: ri!statusSearch,
applyWhen: not(isnull(ri!statusSearch))
)
