When defining a view on a list is it possible to specify the order that the filter options are applied when you have more than one filter requirement.
You can specify AND and OR but can these be grouped together with brackets?
eg a list of products with types & status's
(type=A OR type=B) AND (status=1 OR status=2)
the view definition allows you to enter the following
type=A OR type=B AND status=1 OR status2
but this is interpreted as
(type=A OR type=B AND status=1) OR status=2
and returns any products of status=2
Any ideas ?
You can specify AND and OR but can these be grouped together with brackets?
eg a list of products with types & status's
(type=A OR type=B) AND (status=1 OR status=2)
the view definition allows you to enter the following
type=A OR type=B AND status=1 OR status2
but this is interpreted as
(type=A OR type=B AND status=1) OR status=2
and returns any products of status=2
Any ideas ?