Hi, in my WPF application I display a large grid with data using RadGridView.
The grid is relatively large, about 150 columns x 750 rows, so after it is loaded I set a layout (sorting, some row filters and hide some columns).
I use the RadGridView.Loaded-event to trigger the layout adjustments.
The first time I open the grid after starting the application, the layout is not applied when opening the grid - because the grid is empty eventhough the Loaded-event was fired. From the second time opening the grid and onwards, the grid have data and the layout is applied.
The Loaded-event seem not to guarantee that the grid is done loaded. Are there other ways to make sure the RadGridView has loaded all data and is ready for manipulation?
It also takes notably longer time to open it the first time after starting the application, making me to believe that the application loads DLLs etc, could that have any relation?
I've tried the other events available for RadGridView (https://docs.telerik.com/devtools/wpf/controls/radgridview/events/overview#radgridview), but the result is the same.
Im using 2020.1 version.
The grid is relatively large, about 150 columns x 750 rows, so after it is loaded I set a layout (sorting, some row filters and hide some columns).
I use the RadGridView.Loaded-event to trigger the layout adjustments.
The first time I open the grid after starting the application, the layout is not applied when opening the grid - because the grid is empty eventhough the Loaded-event was fired. From the second time opening the grid and onwards, the grid have data and the layout is applied.
The Loaded-event seem not to guarantee that the grid is done loaded. Are there other ways to make sure the RadGridView has loaded all data and is ready for manipulation?
It also takes notably longer time to open it the first time after starting the application, making me to believe that the application loads DLLs etc, could that have any relation?
I've tried the other events available for RadGridView (https://docs.telerik.com/devtools/wpf/controls/radgridview/events/overview#radgridview), but the result is the same.
Im using 2020.1 version.