JenkinsDev/Validatinator

Add per field custom validation messages

lnpbk opened this issue · 8 comments

Hey. It'd be really handy to be able to specify custom validation messages for different fields

var validator = new Validatinator({
    signUpForm: {
        name: 'required',
        email: 'required'
    }
}, {
    signUpForm: {
        name: {
            required: 'Please provide a name.'
        },
        email: {
            required: 'You really should have email.'
        }
    }
});

Thanks for the awesome work

Great suggestion! I'll look into hashing this out in the near future.

Awesome!

Looking to get this rolling within the next day or so. Just giving you a heads up and letting you know I haven't forgotten about the suggestion.

Thanks for the heads up! Can't wait to implement!

On 20 Apr 2015, at 17:41, David notifications@github.com wrote:

Looking to get this rolling within the next day or so. Just giving you a heads up and letting you know I haven't forgotten about the suggestion.


Reply to this email directly or view it on GitHub.

Agreed! I've resorted to implementing this manually.

@dannav If you have something coded up already you could always make a pull request! 👍

Waiting for Travis CI to run all of the tests. If all is good then I will be pushing these changes live and moving Validatinator over to 1.3.0.

Added in @ef919333428a778682 💯 👍