On Datagrid Filters I would like to add a custom filter for the Values
For example, I have an order with a Decision parameter which is an Enum (Pass, Fail, Pending) on top of those values I want to add 1 more filter option which is not defined on the Enum -
"Low in stock" based on logic.
if(Order.Decision == Decision.Pass && Order.IsInLowStock)
Is it possible to add a filter option so I could select
Pass, Fail, Pending & Low in stock without editing my enum and database?
As of right now, I can add Low in Stock only inside a template for the cell but not for the filter and I can only edit filter to display it as Pass/ Low in stock

