I have an admin module, that lists orders.
One of the filters is a drop down, which lists the order_status and is a relation to the order_status table.
These order_id’s are an id, from 1-10.
What I’m looking to do, is to filter by more than one of these order_id’s.
So something like 1,2,3,4,5 or 6,7,8,9,10
Is this possible, or do I need to create a custom filter?
Why not? Allow to your order widget multiple selections.
Set option
'multiple' => trueUpdate:
Try to handle value of orders types manually. Here is example:
Locate this method into your filter class.