Robin Herbots

Results 184 comments of Robin Herbots

@Dionis78 , @TCURT15 , @canassa , Add the noValuePatching: true option and it will work. This is a workaround, but I will try to solve this out-of-the-box.

Hi @oscaroxy, I didn't test it but by updating the mask. ``` Inputmask({ alias: "email", mask: "*{1,64}[.*{1,64}][.*{1,64}][.*{1,63}]@-{1,63}.-{1,63}[.-{1,63}][.-{1,63}](, *{1,64}[.*{1,64}][.*{1,64}][.*{1,63}]@-{1,63}.-{1,63}[.-{1,63}][.-{1,63}]){*}", ``` This should allow [email protected], [email protected], ....

#2557, #2558

@oscaroxy , Yes I will/am working on extending the email mask to allow multiple entries.

There is some progress. Add the separator option to the email mask and enable entering 2 emails. ``` Inputmask("email", { separator: ", " }).mask("test2"); ``` todo: - check why the...

Did you use the latest from the dist folder ?

@oscaroxy , Use the latest version 5.0.7-beta.34 ;-) And have a try with ``` Inputmask("email", { separator: ", " quantifier: 5 }).mask("test2"); ``` This will allow 6 e-mail adresses.

I'm working on a solution,but I only have little time to spend. Hopefully a fix soon

@EricTousignant , Thx for your findings and feedback.