This question is locked. New answers and comments are not allowed.
Hi,
I choose a filter on a RadGridView ( img1.png) ,
I save the filter (xml file) ,
and I close the application.
When I open the same file, I load my backup :
It display the good result but my filter(s) do(es) not appear in the column (cf. img2.png)
Is there a way to display the filters in the column?
Thanks.
I choose a filter on a RadGridView ( img1.png) ,
I save the filter (xml file) ,
and I close the application.
When I open the same file, I load my backup :
private void FillFilter<T>(QueryableCollectionView collection, ObservableCollection<T> filters) { foreach (T item in filters) { collection.FilterDescriptors.Add(new FilterDescriptor( "Code", FilterOperator.IsEqualTo, item.GetType().GetProperty("Code").GetValue(item, null).ToString() , true)); } }It display the good result but my filter(s) do(es) not appear in the column (cf. img2.png)
Is there a way to display the filters in the column?
Thanks.