I have a function to check all fields in a form:
validateForm: function() { var validator = new Validation(this.form); validator.validate(); }
There are two controls. The first control should check only the fields a, b, c . The second control should check only d, e, f fields . How can I achieve this?
Jeaf gilbert
source share