For example lets say I have a orders database with orders in different states.
In process
Waiting parts
Shipped
In Shipping etc…
You get the idea.
Now when the grid of orders opens I want to view only orders that are in process as default, I can do this with a Where in the SQL but I might want to look at orders that are waiting parts at some point or the ones that are in shipping and the where clause excludes those from loading.
I know I can add a dynamic search to the grid and limit it that way but if possible I don’t want to do a search to start I would rather be able to see the default and look at those and then only search if I want to see the others.
Any ideas?