Hi
I have a RadGridView with its ItemsSource bound to a RadObservableCollection. I have applied both custom filtering and grouping to the GridView.
The problem is that not all items are shown after the RadObservableCollection have been cleared and updated. It could be that I only see one row out of twelwe. There is space for the rest of the items but the area only shows the background color. Hovering the area does not do any difference. Only when I touch the scrollbar all rows appear.
Here is how I update the RadObservableCollection:
VideoLossItems.SuspendNotifications();
VideoLossItems.Clear();
VideoLossItems.AddRange(items);
VideoLossItems.ResumeNotifications();
I am attaching two files that show the difference.
Do you know what might be causing this issue? Is there a decent workaround for it?
I have a RadGridView with its ItemsSource bound to a RadObservableCollection. I have applied both custom filtering and grouping to the GridView.
The problem is that not all items are shown after the RadObservableCollection have been cleared and updated. It could be that I only see one row out of twelwe. There is space for the rest of the items but the area only shows the background color. Hovering the area does not do any difference. Only when I touch the scrollbar all rows appear.
Here is how I update the RadObservableCollection:
VideoLossItems.SuspendNotifications();
VideoLossItems.Clear();
VideoLossItems.AddRange(items);
VideoLossItems.ResumeNotifications();
I am attaching two files that show the difference.
Do you know what might be causing this issue? Is there a decent workaround for it?