Jquery validator - общее сообщение для всех ошибок - PullRequest
0 голосов
/ 07 июня 2011

Я использую следующие правила проверки для моей формы.Мне нужно отобразить одно общее сообщение об ошибке для всех проверок.Я сгруппировал элементы управления, но не могу передать сообщение.

$(function() {

jQuery.validator.addMethod("lettersonly", function(value, element) {
return this.optional(element) || /^[a-z]+$/i.test(value);
}, "Letters only please");

$(".form").validate({

errorLabelContainer: "#errorMessages",
groups: {
    username: "name email lName zip"
},
rules: {
    name:{
        required: true,
        lettersonly: true
    },
    email: {
        required: true,
        email: true
    },
    lName: "required",
    zip: "required"
},      
messages: {
    username:"Sorry friend, your vote was not processed because you forgot to enter the required information. Enter it now."
}
});
});

1 Ответ

0 голосов
/ 07 июня 2011
function(){
    bValid = bValid && Function1toValidate($('#txtTitle'));
    bValid = bValid && Function2toValidate($('#txtEmail'));

    if (bValid)
    {
        proceed with the procedure
    }
    else
    {
        your error message
    }
}

//those validate functions code it here
Function1toValidate()
{}
Function2toValidate()
{}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...