Here's what I have:
<div data-ng-if="hasSelectedCompany">
<tbody data-ng-repeat="driver in result.applications | filter: { name: selectedApplication } track by $index">
</div>
<div data-ng-if="hasSelectedSupportedCompany">
<tbody data-ng-repeat="driver in result.applications | filter: { name: selectedSupportedApplication } track by $index">
</div>
And I know this can be improved, I'm just not sure how. It's not working right now. The first expression is not working when I have both of these in there. When I remove the second expression completely, the first one starts to work. The second one works with both of them in.
What's an alternative way to accomplish this?
Thanks!
Both filters will not work together because both are referring to same
result.applications
.You need to do separate the filtered array of both by assigning it to different variable like
applicationsForCompany
forhasSelectedCompany
div &applicationsForSupportedCompany
forhasSelectedSupportedCompany
divMarkup