Reputation: 8430
I've been breaking my head for a long time with this but I can't find the solution. Please check this fiddle. If you click into the box, a list of categories appears. Then if you select a value, it's copied to categoryFilter
through
$scope.categoryDropDownClickEvent = function(value) {
$scope.categoryFilter = value;
console.log($scope.categoryFilter);
};
Then if you erase it and select it again, it doesn't work anymore though the scope itself is updated (see console). How come?
Upvotes: 0
Views: 119