I am applying some client side filtering on my grid, however, I would like to change the filtering logic to use "OR" instead of "AND".
Example:
I am adding in multiple filters...
The default logic on the grid will cause it to filter like so - Status = Active AND Status = Pending.
Instead I want to have my fitlers do the following: Status = Active OR Status = Pending
I cannot find any examples of this. Is this possible to do?
Example:
I am adding in multiple filters...
{ field: 'Status', operator: '==', value: 'Active' }
{ field: 'Status', operator: '==', value: 'Pending' }The default logic on the grid will cause it to filter like so - Status = Active AND Status = Pending.
Instead I want to have my fitlers do the following: Status = Active OR Status = Pending
I cannot find any examples of this. Is this possible to do?