Is there a way for me to deselect the radio button under specific conditions?
<input type="radio" name="XXX" value="add" data-ng-model="XXX"/>Add
I am looking to have this radio button unchecked when certain conditions are met, like so:
<input type="radio" name="XXX" value="add" data-ng-model="XXX" ng-unchecked="add.new='false'"/>Add
Is there a simpler method I can use to achieve this?