Hi,
I am using filters and they work great when I have one condition per record filter.
I have a need to do something like this: Only show records whose StopDate is either greaterthan today's date or is null.
So I added 2 conditions... It is almost clear that it doesn't work. Is there a way this can be done??
Thanks
RecordFilter
]);
dateFilter.Conditions.Add(
.Now));
));
e.FieldLayout.RecordFilters.Add(dateFilter);
The default LogicalOperator of the Conditions (which returns a ConditionGroup) is And. You can set the dateFilter.Conditions.LogicalOperator to LogicalOperator.Or.