is it possible to hide the <select> element if the ng-options variables are empty after using a filter?
<select class="form-control"
ng-model="selected"
ng-options="property.pstSnr.description for property in leistobToProperties | filter: {grouping:1}">
</select>
The <select> element should not be visible if all the options of property.pstSnr.description are empty.
Thanks.