-
Notifications
You must be signed in to change notification settings - Fork 27.4k
feat(ngModel): add $touched and $untouched states #7673
Conversation
Thanks for the PR! Please check the items below to help us merge this faster. See the contributing docs for more information.
If you need to make changes to your pull request, you can update the commit with Thanks again for your help! |
@matsko Here's an initial PR. Couple questions:
|
<div ng-if="myForm.$submitted || myForm.myField.$touched">...</div> |
Once those two functions are set and the |
Excellent work BTW :) |
Also, for now, let's put the |
Cool, I think this will also resolve my yesterday issue #7666 |
@matsko I updated the PR to use |
Don't you think that parent form should also get these classes? |
@guzart can you make another test and trigger the event using |
Sets the ngModel controller property $touched to True and $untouched to False whenever a 'blur' event is triggered over a control with the ngModel directive. Also adds the $setTouched and $setUntouched methods to the NgModelController. References #583
@smashercosmo do you mean like |
@guzart I thought it should work the same way .ng-dirty and .ng-pristine classes work. When one input becomes dirty the whole form also becomes dirty. |
@@ -2017,6 +2059,12 @@ var ngModelDirective = function() { | |||
}); | |||
}); | |||
} | |||
|
|||
element.on('blur', function(ev) { | |||
scope.$apply(function() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't like that we get one extra-digest here. May be it's better to move it inside upper $apply block and check event object for blur event?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think that there is any other way.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could have some code that checks if the updatedOn
has a blur
event, and then piggyback on the first digest, otherwise bind to the element the way it currently is.
I think it could be be a good optimization, not sure how expensive a digest is. @matsko what do you think?
@guzart this is an excellent PR. Great work. I'm just waiting on @smashercosmo's reply and then I will merge this in. |
@matsko my reply about what?)) |
@guzart @smashercosmo let's apply the fixes in another PR. Perhaps they could be applied to other parts of NgModel. I will continue now and merge this in. |
This PR Looks Good to Me. |
MERGED |
Landed as adcc5a0 |
Sets the ngModel controller property $touched to True and $untouched to False whenever a 'blur' event is triggered over a control with the ngModel directive.
References #583