Search clauses are ORed Default: The default (filterAllOr = false) will cause a filter/search on column1, column2 like this (assume that exact match has been configured):
SELECT * FROM table WHERE column1 = '$col1' AND column2 = '$col2';
When filterAllOr = true, this becomes
SELECT * FROM table WHERE column1 = '$col1' OR column2 = '$col2'; Basic:Yes Advanced/Enterprise:Yes DynamicEdit:Yes [Version 1.3]
|