4

Angular ng-if multiple conditions


Angular ng-if multiple conditions
Example 1
<table class="table table-bordered table-striped table-hover">
    AND Operator
    <tr ng-repeat="LList in MatchedList" ng-if="MatchStatus == 'Accepted' && LList.CampaignStatus == 'Accepted'">
        <td>{{LList.CampaignStatus}}</td>
    </tr>

    OR Operator
    <tr ng-repeat="LList in MatchedList" ng-if="MatchStatus == 'Quote' || LList.CampaignStatus == 'Quote'">
        <td>{{LList.CampaignStatus}}</td>
    </tr>
</table>

Example 2
<div ng-repeat="itm in items">
    OR Operator
    <div ng-if="itm == 'anil' || itm == 'a'">
        {{itm}}
    </div>

    AND Operator
    <div ng-if="itm == 'anil' && itm == 'a'">
        {{itm}}
    </div>
</div>

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Angular ng-if multiple conditions Angular ng-if multiple conditions Reviewed by Anil Singh on 1:53 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^