This is a migrated thread and some comments may be shown as answers.

Ellipses busy indicator freezes when UI is busy

1 Answer 69 Views
BusyIndicator
This is a migrated thread and some comments may be shown as answers.
Irena
Top achievements
Rank 1
Irena asked on 13 Aug 2014, 10:55 PM
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.

1 Answer, 1 is accepted

Sort by
0
Konstantina
Telerik team
answered on 14 Aug 2014, 10:03 AM
Hello Irena,

Seems like you have done all the needed things.
Could you please modify the project in the blog post to fit your changes made and send it back to us via support ticket. In that way we could review it here locally and provide you with solution in a timely manner.

Looking forward to your reply.

Regards,
Konstantina
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
Tags
BusyIndicator
Asked by
Irena
Top achievements
Rank 1
Answers by
Konstantina
Telerik team
Share this question
or