-
Notifications
You must be signed in to change notification settings - Fork 27.5k
ng-model-options={updateOn: 'blur'} not working #7117
Comments
If $apply is a noop then it usually means that the scope has been destroyed already. |
@IgorMinar is right, the reason this doesn't work is that |
So in my case (using ng-grid) 'blur' simply is the wrong event? Maybe some hint in the documentation or an error on the console would help. Can't say if this is something I struggled with because I'm new to angular or it isn't that obvious. Thanks @shahata for the plunker. Works fine now. |
I have also seen that happening directly in the documentation. The page https://docs.angularjs.org/guide/forms The version where that happens (used in the Plunker code) is http://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.5/angular.min.js The problem does not happen on the version used in the main page ( https://docs.angularjs.org/guide/forms). So even if this is a bug that has now been fixed in a later version, there is at least a problem in the documentation. |
This obviously does not work in |
A common confusion when reading docs is the selected version in the dropdown before the breadcrumb. I think it should be selected with the latest stable version and not latest beta. |
+1 |
2 similar comments
+1 |
+1 |
Happy to see that this has landed in 1.3.0. I was curious if "custom events" are truly supported, or if only native-dom events are supported? I'm thinking that this is not possible natively yet (because I can't piece together how I'd do it without my own directive), but I'm ultimately trying to only update the model once I get back a successfully persisted response from a $http or $resource call. I have a shadow directive that I'm using all over my app that I'd love to change out for something native. An very early prototype so you can see functionally what I'm talking about doing: http://jsfiddle.net/langdonx/m4zaj/1/ |
+1 |
Environment
Version: AngularJS v1.3.0-build.2602+sha.b10a437
Browser: Chrome (OS-X) 34.0.1847.116
Issue description
When using the 'blur' event the value is not saved to the model. Other events and 'default' works fine.
I'd like to use this feature in a ng-grid cell with a custom $parser. After my user enters some text into the cell I want to do one validation run before saving to the model.
I'm new to angular but investigated this a little. Maybe my investigation below helps a little narrowing the issue down.
Maybe it has something to do with event handling order since ng-grid also registers a blur handler.
Investigation
From my understanding ctrl.$setViewValue(value, event) should be called but isn't because of the $apply is a noop. (Line: 17246)
Unfortunately I don't understand the internals of angular enough to understand why $apply is a noop in my case.
Plunker
http://plnkr.co/edit/IybN8jtCAdm03sCC2lxg?p=preview
Does this help?
The text was updated successfully, but these errors were encountered: