Check If Value Insert Exist In Dropdown With Angularjs
I have a input with an autocomplete with angularjs. This autocomplete is from a json that is represented by a table in a dropdown. I can filter the results and click the correct va
Solution 1:
You can use
<tr ng-show="(numberList.getList | filter:item.value).length == 0">
<td>Nothing here!</td>
</tr>
Post a Comment for "Check If Value Insert Exist In Dropdown With Angularjs"