2
I have an ng-repeat that returns me a list.
Every line, I have a default text that arises if a variable is > 0
So far everything is working.
How do I add to filter only show the record when the default text is filled?
The contents are in a div:
<div name="pesq" id "pesq" style="padding-left: 5px;color:red"> =texto padrão= </div>
<tr ng-repeat="nome in nomes | filter: 'pesq'">
Lucas, it would basically show in the list only the records that have the text of the div
– user103907