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;
}
}