angular-validator
angular-validator copied to clipboard
Validate only particular validators instead of entire form
Currently $validator.validate($scope, model) validates the entire form. Is it possible to add another option where we can specify our custom validators and then it should validate only these instead of the entire form.
i think you looking for [validator-group] use validator-group="someGroup" in your form element and then $validator.validate($scope, 'someGroup')
@DLoT Thanks. Will have a look. Hope it solves my requirement.