i am trying to solve this problem for some time but without luck. I am reading whole afternoon examples like this or this about validation inside ng-repeat but i am not able to find anything that would explain to me the reason why my code doesn't work.
I have form with fields inside ng-repeat and all of them use required parameter for example .
When i trigger update button the validation is not working. If i have the same form without ng-repeat, the validation pop-ups show up normally(if something doesn't match the input criteria). I have used this code:
ng-click="contactForm.$valid && updateContact(contact)"
The code above doesn't seem to have effect on the form with ng-repeat. If possible, i would like get HTML 5 validation pop-up:
on the filed that is empty(or if regex doesn't match with the input) when i press the update button. I don't want to have fields that say required or to disable the update button because some field is not correct.