Tag Button already has cursor css assigned. I want to override cursor css according to is_active values to disable button. is_active may have values 0 or 1. Following is code for js/html please let me know correct method to apply cursor css to button.
ng-style
does not support !important
.
So alternate is to use ng-class
instead of ng-style
, it will solve the problem.
If you want to use ng-style
specifically then try to write within html itself- please don't try to write within any function.