Progress Button

I updated the version of Syncfusion to 18.3.0.35, then my routine stoped working.
Then I return to version 18.2.0.59 and worked.. 

Can you help me?

    public async Task btnInfoBegin(Syncfusion.Blazor.SplitButtons.ProgressEventArgs args)
    {
        this.btnInfo = "Validando usuário...";
        var result = await WebApi.Get<dtoIUSR>(ApiGeneral.getLoginUsers, "", new { user = txtUser, pwd = txtPwd });
        if (result != null)
        {
            appBasic.token = result.Token;
            appBasic.ukey = result.UKEY;
            appBasic.user = result.iUSR_001_C.ToUpper();
            appBasic.email = result.iUSR_006_C.ToLower();
            appBasic.isAdm = result.iUSR_005_N == 1 ? true : false;

            dtoIY99 iY99 = fncGeneral._IY99("IUSR", appBasic.ukey, null, "Login de Usuário");
            var log = await WebApi.Post<dtoIY99>(ApiGeneral.postLog, appBasic.token, null, iY99);

            systemEnter();
            //boolOk = true;
        }
        else
        {
            boolOk = false;
        }
    }

1 Reply 1 reply marked as answer

MK Mohan Kumar Ramasamy Syncfusion Team October 7, 2020 10:31 AM UTC

Hi Thomaz , 
 
We checked your reported query, we cannot reproduce the reported issue in our end. Please refer the below code snippets. 
 
 
@using Syncfusion.Blazor.SplitButtons 
 
<SfProgressButton CssClass="buttonExecute"  Content="Loading"> 
    <ProgressButtonEvents OnBegin="btnInfoBegin"></ProgressButtonEvents> 
    <ProgressButtonSpinSettings Position="SpinPosition.Right"></ProgressButtonSpinSettings> 
</SfProgressButton> 
 
@code { 
 
    private void btnInfoBegin(Syncfusion.Blazor.SplitButtons.ProgressEventArgs args) 
    { 
 
    } 
 
 
For your reference, we have prepared a sample based on this, please refer below link. 
 
 
If you are still facing the issue, kindly share the below details. 
 
  • If possible, try to reproduce the reported issue in provided sample or share the issue reproducible sample
Please provide the above requested information, based on that we will check and provide you a better solution quickly. 
  
Regards, 
Mohan kumar R 
 


Marked as answer
Loader.
Up arrow icon