Hi all,
I am  trying to contribute a new Email Validator that would check if an
email is valid or not.

To do it i created a class Email that implements Validator<Void, Object>.
Then i contributed the Validator in My AppModule:
public static void
contributeFieldValidatorSource(MappedConfiguration<String, Validator>
configuration){
       configuration.add(Email.NAME, new Email());
}

My question are:
1. How could i add a client side validation for my email validation?
2. I disabled js in my browser and none of the  basic Validators (required,
minLegth, etc) worked . Am i a missing something obvious?

Thanks

Reply via email to