Answers for "angularjs ng-class conditional"

2

ngclass condition

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

Angular 8 ngClass If

[ngClass]="{'my-class': step=='step1'}"
Posted by: Guest on February-28-2020
1

ngclass condition

[class.my-class]="step === 'step1'"
Posted by: Guest on March-15-2021
1

Angular 8 ngClass If

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

Browse Popular Code Answers by Language