This question is locked. New answers and comments are not allowed.
We have the same problem discussed in the below blog
http://blogs.telerik.com/blogs/13-06-12/animating-the-radbusyindicator-while-the-ui-thread-is-frozen.
Our busy indicatory is freezing when UI is busy. The only difference is that we are using ellipses busy indicator, instead of the donut one. I added the enableGpuAcceleration parameter, and added the following code to our class that inherits from RadBusyIndicator:
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
var dots = this.ChildrenOfType<UIElement>();
foreach (var dot in dots)
{
dot.CacheMode = new BitmapCache();
}
}
However, I don't see any difference, the dots still freeze about as often as they used to without the changes. I have used both Chrome and IE browser to try it.
Please advise.
http://blogs.telerik.com/blogs/13-06-12/animating-the-radbusyindicator-while-the-ui-thread-is-frozen.
Our busy indicatory is freezing when UI is busy. The only difference is that we are using ellipses busy indicator, instead of the donut one. I added the enableGpuAcceleration parameter, and added the following code to our class that inherits from RadBusyIndicator:
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
var dots = this.ChildrenOfType<UIElement>();
foreach (var dot in dots)
{
dot.CacheMode = new BitmapCache();
}
}
However, I don't see any difference, the dots still freeze about as often as they used to without the changes. I have used both Chrome and IE browser to try it.
Please advise.