Spinner in Theme Fabric almost static in 18.3

We noticed that after updating to version 18.3 the Spinner animation is almost non existant. You have to look very closely to notice a small animation.
This seems to be the case for the fabric theme only, material or bootstrap looks fine.
Is there any way to make this more obvious again as it was with 18.2?


4 Replies 1 reply marked as answer

IS Indrajith Srinivasan Syncfusion Team November 4, 2020 01:03 PM UTC

Hi Andreas, 
 
Greetings from Syncfusion support, 
 
We have validated your reported query. We improved the spinner and included it with the 18.3 release version.  
 
 
Suppose, if you want the same spinner as previous versions, we suggest you to configure the Type property for SfSpinner setting Material as type. Check the below code blocks for reference. 
 
 
@using Syncfusion.Blazor.Buttons 
@using Syncfusion.Blazor.Spinner 
 
<div> 
    <SfButton @onclick="@ClickHandler">Show/Hide Spinner</SfButton> 
    <div id="container"> 
        <SfSpinner @bind-Visible="@VisibleProperty" Type="SpinnerType.Material"> 
        </SfSpinner> 
    </div> 
</div> 
 
@code{ 
    private bool VisibleProperty { get; set; } = false; 
    private async Task ClickHandler() 
    { 
        this.VisibleProperty = true; 
    } 
} 
 
 
Please let us know if the solution helps, 
  
Regards, 
Indrajith 


Marked as answer

AO Andreas Oelke November 4, 2020 02:04 PM UTC

As soon as I use Type="SpinnerType.Material"
the Label isn't updated anymore from the initial value. We set Label="INITIAL" at first and then update the Label of the Spinner directly. This works fine when not using Type. As soon as I use Type (no matter which type is given here) the Spinner always shows "INITIAL" and never updates to the new value.


AO Andreas Oelke November 5, 2020 06:08 AM UTC

It does work when binding the Label. So all is good here now


IS Indrajith Srinivasan Syncfusion Team November 5, 2020 08:56 AM UTC

Hi Andreas, 
 
Good day to you, 
 
We are glad that your reported issue is resolved. Please get back to us if you need any further assistance. 
 
Regards, 
Indrajith 


Loader.
Up arrow icon