This question is locked. New answers and comments are not allowed.
Hi,
I am binding my RadGridView asynchronoulsy with data sets of 500 records. The filter displays records only for the initial bound set i.e only 500 column values but not the entire set when all the table values are populated. When more data sets add to the itemsource the all the records are displayed in the Grid whereas the filter still maintains the initial set and doesn't display all the records.
i tried following code:
| this.gridViewEventViewer.FilterDescriptors.Clear(); |
| EventViewerGridViewModel dataContext = (EventViewerGridViewModel)DataContext; |
| this.gridViewEventViewer.ItemsSource = dataContext.Data; |
| this.gridViewEventViewer.Rebind(); |
| this.gridViewEventViewer.FilterDescriptors.Reset(); |
| this.gridViewEventViewer.CreateFilterDescriptions(); |
also...
| this.gridViewEventViewer.FilterDescriptors.Reset(); |
| EventViewerGridViewModel dataContext = (EventViewerGridViewModel)DataContext; |
| this.gridViewEventViewer.ItemsSource = dataContext.Data; |
| this.gridViewEventViewer.Rebind(); |
none of the above code worked for me.
Will appreciate your response on this one.
Thanks,
Tushar
