I'm using the jQuery validation plugin to validate my forms, and I am also using the addmethod function to create my own validation methods. This is how I set up jQuery Validator:
$(document).ready(function() {
if ($("#validation_json").length > 0) {
var validationJSON = JSON.parse(decodeURIComponent($("#validation_json").val()));
$(".form-horizontal").validate({
rules: validationJSON.rules,
messages: validationJSON.messages
});
}
});
I have and input tag with the id validation_json, and the value set to a set of rules and messages for the jQuery validator plugin; these rules and messages are output server-side with the help of a form builder. The only issue is that whenever I add my own validation method, like so:
jQuery.validator.addMethod("uniqueemail", function(email) {
return false; //just for testing
}, "This email is already in use");
jQuery validator will use this method before submitting the field to check if it is valid (in addition the the rules set above), however if one of the addMethod's validates to false, it will use the message for that item set above in the validate method, and not the message passed into addMethod. Does anyone know of a way that I could get it to display the message actually passed into the addMethod functions? Thanks!
UPDATE:
Here is a jsFiddle link showing the problem.
.validate()rules are formatted and declared properly? What is the exact result ofvalidationJSON.rulesandvalidationJSON.messages? – Sparky Feb 3 at 1:09