Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to add custom validation to a dynamically created control. Can I use .attr() to set a rule for a control?

$.fn.addValidationExpression = function(field) {

    if (field.ValidationExpression != null) {

        $("#fld"+getFieldIdSuffix(field)).attr("validateExpression", field.ValidationExpression);

    }

    return this;
}

What I am trying to avoid is having to do something like this:

$("#TestForm").validate(
        {
            rules: 
            {
                someControl: 
                {
                    validateExpression: true
                },
                someOtherControl: 
                {
                    validateExpression: true
                }
            }
        });
share|improve this question

2 Answers

up vote 2 down vote accepted

Its better to use the data() option of jquery

share|improve this answer

You probably want to do a this.each() in your $ extension as well

share|improve this answer
I have it called in a this.each() which adds the controls. – Jon Ownbey Mar 19 '09 at 21:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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