You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have noticed a small discrepancy in the way that MultiSelects work with Filtering - there appears to be a difference between unchecking all the items, and using the Clear button.
When selecting one or more items, the filter value is an array of items (ie ["A", "B", "C"], and the filter returns the matching items.
When unchecking, this becomes an empty array of items ([]), and the filter returns nothing.
When clicking Clear, this becomes null, and the filter returns everything.
Ideally, the last two cases will return the same result - everything.
I've checked the Prime documentation and demos, and they don't appear (as far as I can find) to do anything else different to what I'm doing here - the only difference I guess is their back-end response.
The text was updated successfully, but these errors were encountered:
Hi, I have noticed a small discrepancy in the way that MultiSelects work with Filtering - there appears to be a difference between unchecking all the items, and using the
Clear
button.I am using an
IN
filter for this field:When selecting one or more items, the filter value is an array of items (ie
["A", "B", "C"]
, and the filter returns the matching items.When unchecking, this becomes an empty array of items (
[]
), and the filter returns nothing.When clicking Clear, this becomes
null
, and the filter returns everything.Ideally, the last two cases will return the same result - everything.
I've checked the Prime documentation and demos, and they don't appear (as far as I can find) to do anything else different to what I'm doing here - the only difference I guess is their back-end response.
The text was updated successfully, but these errors were encountered: