Magento Validate Form Only Certain Fields

I have a function to validate all fields in a form:

validateForm: function() {
    var validator = new Validation(this.form);
    validator.validate();
}

There are two controls. First control need to validate only a,b,c fields. Second control need to validate only d,e,f fields. How can I achieve this?

7
задан Jeaf Gilbert 15 April 2011 в 16:44
поделиться