You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
Do you want to request a feature or report a bug?
feature
What is the current behavior? ng-model always updates and validates at the same time based on the updateOn
What is the motivation / use case for changing the behavior?
I normally don't want my model to be updated as the user types. It might show up other places half complete, it might not be valid yet etc. But I normally do want instant validation as the user types.
I find myself always trying to achieve this various ways such as setting ng-model to a copy of the real model or setting it to Object.create(realModel) then copying the value to the real model on blur.
WDYT? Or is there an easier way to do this that I'm missing?
The text was updated successfully, but these errors were encountered:
Do you want to request a feature or report a bug?
feature
What is the current behavior?
ng-model
always updates and validates at the same time based on theupdateOn
What is the motivation / use case for changing the behavior?
I normally don't want my model to be updated as the user types. It might show up other places half complete, it might not be valid yet etc. But I normally do want instant validation as the user types.
I find myself always trying to achieve this various ways such as setting
ng-model
to a copy of the real model or setting it toObject.create(realModel)
then copying the value to the real model on blur.WDYT? Or is there an easier way to do this that I'm missing?
The text was updated successfully, but these errors were encountered: