How do I add multiple conditions to "ng-disabled"?
You should be able to &&
the conditions:
ng-disabled="condition1 && condition2"
Wanny is correct. The &&
operator doesn't work in HTML. With Angular, you must use the double pipes (||
)for multiple conditions.