This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
when ng-maxlength is invalid, 'require' validation is also invalid #6304
Closed
Description
On a pristine form, I have an input field
<form name="myForm">
<input name="username" ng-model="user.name" required ng-maxlength="5">
</form>
Given that user.name was pre-populated with a string exceeding 5 characters, in angular 1.1.5 the modelCtrl errors were:
form.username.$error = {"required":false,"maxlength":true}
That is expected because only the maxlength is violated, so 'required' was not invalid.
But after angular > 1.2.0 this behavior is now invalid for both:
form.username.$error = {"required":true,"maxlength":true}
This is a bit unexpected. Why should 'required' have an error when the model has some value... unless we're now saying that the value being required must be valid across all other validation requirements in total?
You can test it here by swapping out the angular version:
http://plnkr.co/edit/uUaC9tgHEozBkUReRXBk?p=preview