Apply class conditionally angular

96 Views Asked by At

I am trying to apply class conditionally through ng-class but its not working

ng-class="{'margin-watch':progress <= '0','margin-continue-watch':progress > '0' }"
2

There are 2 best solutions below

1
On BEST ANSWER

Try this

ng-class="{'margin-watch': (progress <= 0), 'margin-continue-watch': (progress > 0) }
0
On

Unless your condition requires you to compare progress to the character '0', you should remove the quotes around the 0. That should fix your expressions! For readability I suggest you apply the () as Yasser does in his answer, but it should work without aswell.