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
Click on Partial validation button and verify the console prints Partial validation result : False as expected.
Enter values in the First Name and Last Name input fields (both populated) and click on Partial validation button and verify that the console does not print the expected message. The method that prints the message is not getting called.
Remove the inputs in the First Name and Last Name input fields (both empty) and click on Partial validation button and verify that the console does not print the expected message. The method that prints the message is not getting called.
If you blur manually from all the input fields and then click on Partial validation button, then the method gets properly called and the console prints Partial validation result : False as expected.
Expected behavior
The method that triggers the validation logic and all the code in it should always run when user clicks the Partial validation button and the console should always print the validation result.
Screenshots
Hosting Model (is this issue happening with a certain hosting model?):
Additional context
This also happens for full validations when using OnValidSubmit. The methods set there doesn't get properly call after first validation runs.
The text was updated successfully, but these errors were encountered:
Describe the bug
Method that triggers partial validation stops working after the first time
_fluentValidationValidator?.Validate
method runs.To Reproduce
Steps to reproduce the behavior:
Partial validation button
and verify the console printsPartial validation result : False
as expected.First Name
andLast Name
input fields (both populated) and click onPartial validation button
and verify that the console does not print the expected message. The method that prints the message is not getting called.First Name
andLast Name
input fields (both empty) and click onPartial validation button
and verify that the console does not print the expected message. The method that prints the message is not getting called.Partial validation button
, then the method gets properly called and the console printsPartial validation result : False
as expected.Expected behavior
The method that triggers the validation logic and all the code in it should always run when user clicks the
Partial validation button
and the console should always print the validation result.Screenshots
Hosting Model (is this issue happening with a certain hosting model?):
Additional context
This also happens for full validations when using
OnValidSubmit
. The methods set there doesn't get properly call after first validation runs.The text was updated successfully, but these errors were encountered: