Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
I am using FluentValidation for validating my models.
I need to have async usage in order to achieve some field validations.
I use
FluentValidationValidator
var validationResult = validator.Validate(context);
to
var validationResult = await validator.ValidateAsync(context);
I seems works ok.
When doing a field async validation the SfTextbox success and error class are not changed as they should.
I changed the SfTextbox
SfTextBox ID="Code" @bind-Value="item.Code" Enabled="true" FloatLabelType="FloatLabelType.Auto" Placeholder="Tenant Code"
InputText @[email protected] Class="form-control"
and it works ok,.
Success and Error classes are presented as they should.
Can you please advice
Thank you in advance
Panikos Frangoudes