How do I validate a field to have only non numeric characters? I have a field for first name, which can only Use a-z A-Z and allow '-', whitespace between characters. I tried using firstName: { required: true, minlength: 2, maxlength: 32, digits: false },
But the digits rule just doesn't work when it's set to false