You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privateasyncvoidValidateFunc(ValidatorEventArgse){// e.Status = ValidationStatus.Success; // THIS WORKSboolvalid=awaitRemoteValidateFunc(e.Value);e.Status=ValidationStatus.Success;// THIS DOESN'T WORK (StatusChanged not fired)// validations.ValidateAll(); // WORKAROUND (but invalidates all blank fields)}
It would be very helpful if this could be supported - or is there another way this should be done?
The text was updated successfully, but these errors were encountered:
For this scenario I should probably refactor Validator and convert it to EventCallback instead of plain event. It makes sense as it should be more flexible, especially for this kind of situations.
But since it's probably a larger change, and breaking change I will schedule it for one of next milestones.
Validation with async Validator functions don't work (when e.Status is set asynchroniously):
It would be very helpful if this could be supported - or is there another way this should be done?
The text was updated successfully, but these errors were encountered: