Answers for "add class based on value in angularjs"

0

add class to element angular in ts

type one

[class.my-class]="step === 'step1'"
type two

[ngClass]="{'my-class': step === 'step1'}"
and multiple option:

[ngClass]="{'my-class': step === 'step1', 'my-class2':step === 'step2' }"
type three

[ngClass]="{1:'my-class1',2:'my-class2',3:'my-class4'}[step]"
type four

[ngClass]="(step=='step1')?'my-class1':'my-class2'"
Posted by: Guest on March-05-2021
0

add class based on value in angularjs

<tr ng-repeat="scores in Test" ng-class="{true: 'warning', false: 'ok'}[scores.Indicator == 'Negative']">                       
     <td>Overall: {{ scores.Indicator }}</td>
</tr>
Posted by: Guest on May-02-2022

Code answers related to "add class based on value in angularjs"

Code answers related to "Javascript"

Browse Popular Code Answers by Language