Answers for "ngclass with condition in angular 8"

2

ngclass condition

[ngClass]="{'my-class': step === 'step1'}"
Posted by: Guest on March-15-2021
0

ngclass condition

[ngClass]="(step=='step1')?'my-class1':'my-class2'"
Posted by: Guest on October-16-2020
1

Angular 8 ngClass If

[ngClass]="(step=='step1')?'my-class1':'my-class2'"
Posted by: Guest on February-28-2020
1

Angular 8 ngClass If

[class.my-class]="step=='step1'"
Posted by: Guest on February-28-2020

Code answers related to "ngclass with condition in angular 8"

Browse Popular Code Answers by Language