Hello,
I am currently trying to improve the UX of my application which uses RadGridViews.
At a high level, my current workflow is as follows: I my set RadBusyIndicator binding to true, fire a background worker to perform some work on a datatable (which is binded to the RadGridView) then set RadBusyIndicator binding to false on worker completed.
There are two problems I am encountering:
1) When the datatable has changed, the updating of the RadGridView blocks the UI thread, causing RadBusyIndicator to freeze. If the datatable is large enough, this can effectively freeze the application for quite some time. What would be the best way to show some kind of progress dialog for this?
2) The first time the RadGridView loads, the data_loaded event is fired. However when the datatable has changed and the RadGridView has updated, data_loaded event isnt fired. Is there an event I can monitor for this?