Is it possible for a programmatic update to the RadGridView.FilterDescriptors collection to be reflected in the column's FilteringControl?
E.g., this code doesn't get automatically reflected in the associated column's popup filter control.
But I'd like this code to update the FilteringControl thus providing the user with an alternative mechanism for filtering.
So is there a straightforward way to make that happen?
Many thanks!
E.g., this code doesn't get automatically reflected in the associated column's popup filter control.
grid.FilterDescriptors.Add(fieldName, FilterOperator.IsEqualTo, fieldValue) { MemberType = column.DataType })
- or -
grid.FilterDescriptors.Add(fieldName, FilterOperator.IsNotEqualTo, fieldValue) { MemberType = column.DataType })
But I'd like this code to update the FilteringControl thus providing the user with an alternative mechanism for filtering.
So is there a straightforward way to make that happen?
Many thanks!