I have 3 selects that all share the same options. As an option is selected in one of them, I want to filter it out of the other selects.
I took a stab at it here and did not have any luck. http://plnkr.co/edit/ERGTbQSjoX3IpGAomcUn?p=preview
<select name="ques1" ng-model="q1" required>
<option value="">question</option>
<option ng-repeat="question in questions | filter: { Id : '!' + q2 } | filter: { Id : '!' + q3 }" value="{{ question.Id }}">{{ question.Question }}</option>
</select>
Any advice? And thanks in advance.