0
How can I get a variable to be transformed into value as in the example: ng-repeat=" op in opportunitiesUnica | filter: Referencecode = 'VARIABLE'"?
0
How can I get a variable to be transformed into value as in the example: ng-repeat=" op in opportunitiesUnica | filter: Referencecode = 'VARIABLE'"?
0
You can filter using ng-if in the element itself, such as
<div ng-repeat="op in oportunidadeUnica" ng-if="op.ReferenceCode == filterCode">
{{op.name}}
</div>
Browser other questions tagged filter ng-repeat
You are not signed in. Login or sign up in order to post.