Is it possible to dynamically set the ng-show property of #category based on the value of item.show? I want #category to be visible only if at least one of the items in that category is shown. How can this be achieved using AngularJS? I'm still learning the ins and outs of AngularJS.
<div id='category' ng-repeat="cat in cats">
<div id='item' ng-show='item.show' ng-repeat="item in cat.items">
</div>
</div>