I have two sets of radio inputs:
<input type="radio" value="0" ng-model="domestic" ng-checked="domestic"> Domestic
<input type="radio" value="1" ng-model="international" ng-checked="international"> International
and:
<input type="radio" value="0" ng-model="domestic" ng-checked="domestic"> Verified
<input type="radio" value="1" ng-model="international" ng-checked="international"> Unverified
Regardless of which input in either set I click I want it to change the same one in the other set accordingly.
I have written it like this because I want it to work both ways.
Is this the right way to bind? or is there a better way.
Thanks