Hoping someone can help me with this. I just upgraded my WinForms controls to version 2010.3.10.1215 from 2010.3.10.1109 and my composite filters have stopped working. They do not cause an exception or break anything else, it's as if they are completely ignored. Indidual filters work perfectly still, but they are insufficient to my needs. So... I'm checking with the community before posting a ticket. Example composite filter below. Thanks
CompositeFilterDescriptor
compositeFilter = new CompositeFilterDescriptor();
compositeFilter.FilterDescriptors.Add(
new FilterDescriptor("IsDeleted", FilterOperator.IsEqualTo, false));
compositeFilter.FilterDescriptors.Add(
new FilterDescriptor("FolderLocation", FilterOperator.IsEqualTo, selectedFolder));
compositeFilter.LogicalOperator =
FilterLogicalOperator.And;
rgvEmails.FilterDescriptors.Clear();
rgvEmails.FilterDescriptors.Add(compositeFilter);
Me.rsTracks.GetTimelineView.GroupSeparatorWidth = 1
Me.rsTracks.GetTimelineView.ResourcesPerView = 4
Me.rsTracks.GetTimelineView().ShowTimescale(Timescales.Hours)
Dim timescale As SchedulerTimescale = Me.rsTracks.GetTimelineView().GetScaling()
timescale.DisplayedCellsCount = CInt(12)