Unplanned
Last Updated: 25 Jan 2019 07:31 by ADMIN
ADMIN
Hristo
Created on: 20 Jan 2017 12:33
Category: PivotGrid
Type: Bug Report
2
FIX. RadPivotGrid - the label filter dialog is not working with a PropertyGroupDescription of a date field
Workaround: If possible add the label filters with code
PropertyGroupDescription dateGroupDescription = new PropertyGroupDescription();
dateGroupDescription.PropertyName = "Date";

LabelGroupFilter filter = new LabelGroupFilter();
ComparisonCondition condition = new ComparisonCondition
{
    Condition = Telerik.Pivot.Core.Filtering.Comparison.IsGreaterThan,
    Than = new DateTime(2010, 6, 6)
};
filter.Condition = condition;
dateGroupDescription.GroupFilter = filter;

this.provider.RowGroupDescriptions.Add(dateGroupDescription);
0 comments