I have a problem with angle expression
This does not work! ! checked2
<body ng-app="">
<label>
Click me to toggle:
<input type="checkbox" ng-model="checked">
<input type="checkbox" ng-model="checked2">
</label>
<br/>
<button ng-model="button" ng-disabled="!checked || !checked2">Button</button>
</body>
So it works checked || checked2
<body ng-app="">
<label>
Click me to toggle:
<input type="checkbox" ng-model="checked">
<input type="checkbox" ng-model="checked2">
</label>
<br/>
<button ng-model="button" ng-disabled="!checked || !checked2">Button</button>
</body>
I need 2 checkboxes that as I select one of the two, a certain field will be enabled, would that be a bug?