please pay attention this is the opposite of 99% of the related questions on stackoverflow.
Mi problem is: I have a dependent select, when the 'Master' select changes, the 'Slave' view gets updated but NOT it's model. WEIRD.
Example code:
<!DOCTYPE html>
<html ng-app>
<head>
<script src="https://code.angularjs.org/1.3.5/angular.js"></script>
</head>
<body>
<select ng-model='master'>
<option value='m1'>Master 1</option>
<option value='m2'>Master 2</option>
</select>
<select ng-model='slave'>
<option value='Slave 1 selected' ng-selected='master == "m1"'>Slave 1</option>
<option value='Slave 2 selected' ng-selected='master == "m2"'>Slave 2</option>
</select>
{{ slave }}
</body>
</html>
When changing the Master select, you can see the select changing but not the printed value for the binding {{ slave }}.
Link to plunker: http://plnkr.co/edit/LjaKgTTfBlczkGuCIhZ1
Angular updates the view based on model changes and the model based on user interactions with the view. By changing the selected option manually using
ng-selected
, angular has not seen the user select a new option and therefore does not updateslave
. And sinceslave
has not changed since it last set the selected option on the control it will not update the selected option. I don't think you should useng-model
andng-selected
together. I think this makes total sense and is not a bug in angular, ng-selected just isn't meant to be used that way. Think about this code:What should the value of
slave
be and which option should be selected? You have set both options in code, what should angular do to the html select? Should it ignore your setting of the 'slave' value? Should it ignore theng-selected
attribute that says it should select slave 2 ifmaster
ism2
? Let's say you setmaster
tom1
, this causesng-selected
to make the selected option slave 1. What if the user then changes the option to slave 2? Theng-selected
option is then incorrect.If you want to do a one-time setting of the slave value when the master is changed, you should create a watch to run code when the value changes: