Completed
Last Updated: 18 Sep 2019 08:50 by ADMIN
Release R3 2019
Francis
Created on: 09 Aug 2019 16:47
Category: BusyIndicator
Type: Bug Report
1
BusyIndicator: [iOS, Android] Animation Doesn't Work after 1st Toggle

Using the code code below, the RadBusyIndicator will animate the first time you toggle IsBusy.

However, any subsequent changes to IsBusy will show the AnimationType's graphic, but without animation.

<telerikBusyIndicator:RadBusyIndicator x:Name="radBusyIndicator"
                                               AnimationType="Animation4"
                                               IsBusy="{Binding IsBusy}"
                                               IsVisible="{Binding IsBusy}"
                                               Grid.RowSpan="3" />

2 comments
ADMIN
Didi
Posted on: 13 Aug 2019 11:46
Hello Sadanan,

Thank you for you input. I have tested the scenario and yes when IsVisible is not used the animation works fine, for example:

<telerikBusyIndicator:RadBusyIndicator x:Name="radBusyIndicator"
                          AnimationType="Animation4"
                          IsBusy="{Binding IsBusy}"
                          InputTransparent="True"
                          Grid.RowSpan="3" />

I have included this information in the internally logged item.

Regards,
Didi
Progress Telerik
Sadanan
Posted on: 13 Aug 2019 07:57
If I don't use IsVisible property then it works fine.