Hi,
My rad gridview becomes unresponsible for a couple of seconds while grouping certain amount of data. All I want to do is to show some kind of loading indicator for this period of time. I tried to leverage OnGrouping, OnGrouped events to set IsBusy but it does not work:
It looks like GridView performs all grouping in UI thread without any chance for 'IsBusy = true' being proceed before grouping finishes.
Is this any recommended way to achieve this? I can't believe nobody meets this issue but forum search was unsuccessful :(
Thanks in advance
My rad gridview becomes unresponsible for a couple of seconds while grouping certain amount of data. All I want to do is to show some kind of loading indicator for this period of time. I tried to leverage OnGrouping, OnGrouped events to set IsBusy but it does not work:
OnGrouping(){ gridView.IsBusy =
true
;}
OnGrouped(){ gridView.IsBusy =
false
;}
It looks like GridView performs all grouping in UI thread without any chance for 'IsBusy = true' being proceed before grouping finishes.
Is this any recommended way to achieve this? I can't believe nobody meets this issue but forum search was unsuccessful :(
Thanks in advance