How do you create a simple, custom rule using the jQuery Validate plugin (using addMethod) that doesn't use a regex?

For example, what function would create a rule that validates only if at lease one of a group of checkboxes is checked?

link|improve this question
feedback

5 Answers

You can create a simple rule by doing something like this:

jQuery.validator.addMethod("greaterThanZero", function(value, element) {
    return this.optional(element) || (parseFloat(value) > 0);
}, "* Amount must be greater than zero");

And then applying this like so:

$('validatorElement').validate({
    rules : {
        amount : { greaterThanZero : true }
    }
});

Just change the contents of the 'addMethod' to validate your checkboxes.

link|improve this answer
11  
What is the this.optional(element) || doing in that function? It seems like every rule has that, but I can't tell why it would be relevant for any rule except "required". – machineghost Apr 24 '09 at 22:15
16  
Leaving it out would mean that the method would always be applied, even when the element isn't required. – Mark Spangler Apr 27 '09 at 16:34
I take it that this.optional(element) returns true if element is null? – tnunamak Jan 2 '11 at 18:40
2  
for it to run, "amount" should be the id and name of some element in the page? – Hoàng Long Feb 9 '11 at 10:41
1  
Yes, amount refers to the name attribute of some input form field. – Mark Spangler Feb 10 '11 at 19:15
feedback
$(document).ready(function(){
var response;
$.validator.addMethod("uniqueUserName", function(value, element) {
      $.ajax({
          type: "POST",
           url: "http://"+location.host+"/checkUser.php",
          data: "checkUsername="+value,
          dataType:"html",
       success: function(msg)
       {
          //If username exists, set response to true
          response = ( msg == 'true' ) ? true : false;
       }
     })
   return response;
}, "Username is Already Taken");
   $("#regFormPart1").validate({
username: {
      required: true,
       minlength: 8,
       uniqueUserName: true
       },
 messages: {
username: {
      required: "Username is required",
       minlength: "Username must be at least 8 cheractors",
       uniqueUserName: "This Username is taken already"
      }
    }
 }); 
link|improve this answer
I tried this method and it works pretty good, however, men returning any other msg than true it still doesnt validate "ok" it is stuck in "Username is Already Taken", what can be wrong? i have also checked that it is returned properly by echoing values instead of returning false and true, and this works. seems to me that my browser is not picking up the return false , return true? this is making me crazy.. – Mikelangelo May 25 '10 at 15:33
1  
got it to work by inserting a variable that is called result before the addmethod, seems the true, false values are registering properly within the success function – Mikelangelo May 27 '10 at 9:19
@Mikelangelo: Can you show us what you mean by "added a variable before the addMethod"? I'm lost on that line and I'm having the same issues that you did. Thanks in advance! – Loony2nz May 27 '10 at 21:38
@Mikelangelo i met same problem help me even true is returned jquery.validate shoes out an error – Mohan Ram Jun 9 '11 at 5:51
As could be found here: http://stackoverflow.com/questions/2628413/jquery-validator-and-a-custom-rule-t‌​hat-uses-ajax An improvement to Tracy's answer, isSuccess variable is perhaps the 'result' variable Mikelangelo is talking about. – John Oct 22 '11 at 3:00
show 2 more comments
feedback
// add a method. calls one build in method, too.
jQuery.validator.addMethod("optdate", function(value, element) {
        return jQuery.validator.methods['date'].call(
            this,value,element
        )||value==("0000/00/00");
    }, "Please enter a valid date."
);

// connect it to a css class
jQuery.validator.addClassRules({
    optdate : { optdate : true }    
});
link|improve this answer
2  
addClassRules is a nice addition to the answer. – Four May 10 '11 at 18:51
feedback

Thanks, it worked!

Here's the final code:

$.validator.addMethod("greaterThanZero", function(value, element) {
var the_list_array = $("#some_form .super_item:checked");
return the_list_array.length > 0;
}, "* Check at least one checkbox");
link|improve this answer
feedback
########################
## In validation Rules #
########################
regemail: {
    required: true,
    email: true,
    remote: {
        url: "checkmail.php"
    }
},

#####################
## In message Rules #
#####################
regemail: {
    required: "Email is required",
    email: "Invalid Format",
    remote: ""
}

###########################
## Modify Jquery Validate #
###########################
#Search For:
var valid = response === true;
if ( valid ) {

#Change To:
var valid = response.data;
if ( !valid ) {
   valid = true;

#Search For
} else {
   var errors = {};

#Change To
} else {
   valid = false;
   var errors = {};


#Search For:
errors[element.id] = previous.message = response || validator.defaultMessage( element, "remote" );

#Change To:
errors[element.id] = response.data || validator.defaultMessage( element, "remote" );

#PHP Returns JSON 
return ($m == $m) ? false : 'Email has already been registered'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.