Hello,
I didn't understand how to use REGEX validation on fields like email, phone, url, vat etc ...
The code I use is the following
"email": {
validators: {
notEmpty: {
message: "e-mail richiesta!"
},
regexp: {
regexp: /^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$/,
message: "Indirizzo e-mail non valido."
}
}
},