This question is locked. New answers and comments are not allowed.
Hi,
I'm trying to implement the filtering from code-behind and I got it to successfully filter using the following:
while it works, the UI display does not properly filter it. I've attached an image to show the issue.
I've searched the forums a few times and it looks like the DistinctValues of the RadGridView is used to generate the list of checkboxes.. however, I can't find a place where I can select/make the checkboxes check according to the filters that is being applied.
Thanks!
Tony
I'm trying to implement the filtering from code-behind and I got it to successfully filter using the following:
ColumnFilterDescriptor cfd = new ColumnFilterDescriptor(mainGrid.Columns["SomeColumn"]);cfd.FieldFilter.FieldName = col.Member;cfd.DistinctFilter.DistinctValues.Add(5); mainGrid.FilterDescriptors.Add(cfd);while it works, the UI display does not properly filter it. I've attached an image to show the issue.
I've searched the forums a few times and it looks like the DistinctValues of the RadGridView is used to generate the list of checkboxes.. however, I can't find a place where I can select/make the checkboxes check according to the filters that is being applied.
Thanks!
Tony