We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i use EmailField on a binder, never evaluate the input, always is valid.
When i debug see validation start 2 times, one tell is invalid and when the binder clear the invalid, force the email to tell everything is good.
Binder binder = new Binder<>(); EmailField email = new EmailField("Email"); binder.forField(email).bind(Demo::getEmail, Demo::setEmail); // Add to UI
// Inputs email.setValue("HIHI"); email.setValue("Nan"); email.setValue("email@"); email.setValue("email@hola.com");
The text was updated successfully, but these errors were encountered:
This should be fixed in Vaadin 23.3.0 when using enforceFieldValidation=true in Feature Flags.
https://vaadin.com/docs/latest/configuration/feature-flags/#experimental-features
See also: vaadin/platform#3066
Should be closed by #4264
Sorry, something went wrong.
No branches or pull requests
Description
When i use EmailField on a binder, never evaluate the input, always is valid.
When i debug see validation start 2 times, one tell is invalid and when the binder clear the invalid, force the email to tell everything is good.
Binder binder = new Binder<>();
EmailField email = new EmailField("Email");
binder.forField(email).bind(Demo::getEmail, Demo::setEmail);
// Add to UI
// Inputs
email.setValue("HIHI");
email.setValue("Nan");
email.setValue("email@");
email.setValue("email@hola.com");
The text was updated successfully, but these errors were encountered: