How can i clear radio buttons checked status when click on 'clear' buttons ?
Listing radio buttons in ng-repeat,
<label ng-repeat="item in items">
<input type="radio" name="test" ng-model="test" value="{{item.name}}" />{{item.name}}
</label>
<a class="undo" ng-click="clear()">Clear</a>
And is it possible clear checked status from another controller ?