Below is an array that I'm working with.
$scope.set = [
{"name":"name1", "value":"value1"}
{"name":"name2", "value":"value2"}
{"name":"name3", "value":"value3"}
]
I want to display options based on previous selections. For example, if I choose name1, then next time I only want to see the remaining two options: name2 and name3.
I've been attempting this using filters but it seems to be affecting the model $scope.set.
Your assistance in resolving this issue would be greatly appreciated. Thank you in advance!