Hello I am using angularjs ui bootstrap and I have one text field in a modal window, which when I try to print it in alert window it is empty. Any reasons why? Here is a plunker of the code.
Asked
Active
Viewed 1,953 times
2 Answers
3
Here is an updated plunker for you: http://plnkr.co/edit/tvE4DoovZ6NheYj1HMho?p=preview
When using the modal service with ui-bootstrap, you need to encapsulate your model in a container scope, eg:
$scope.form = { testValue: '' };
Also read this for more information about nested scopes: http://jimhoskins.com/2012/12/14/nested-scopes-in-angularjs.html

Matt Way
- 32,319
- 10
- 79
- 85
3
Try to change the
$scope.testField
into
$scope.myModel.testField
(oruser.firstName
...)
As mentioned in this video angular JS - best practice (29:19):
"Whenever you have ng-model there's gotta be a dot in there somewhere. If you don't have a dot, you're doing it wrong."
See updated plunker http://plnkr.co/edit/z1ABPEUB7Nxm1Kxey9iv?p=preview
NOTE: with a nice reminder of the video-minute from article Nested Scopes in Angular JS

Radim Köhler
- 122,561
- 47
- 239
- 335
-
Great if that helped. I suggest watch this video, it is very interesting, really. Enjoy Angular ;) – Radim Köhler Feb 19 '14 at 14:20