Answers for "ng class with condition"

2

ngclass condition

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

if condition in class angular 8

<i [class]="user.login_status == 1 ? 'fas fa-circle user_active' : 'fas fa-circle user_inactive'" aria-hidden="true"></i>
Posted by: Guest on June-17-2020
0

ngclass condition

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

ngclass condition

[ngClass]="step == 'step1' ? 'my_class1' : 'my_class2'"
Posted by: Guest on April-27-2021
0

Angular 8 ngClass If

[ngClass]="{1:'my-class1',2:'my-class2',3:'my-class4'}[step]"
Posted by: Guest on February-28-2020
0

angular conditional class

<button [class.disable]="1==1">Apply disable class when condition is true</button>
Posted by: Guest on September-22-2021

Browse Popular Code Answers by Language