Here is the code I'm using to populate a list of checkboxes.
<label class="checkbox-inline" ng-repeat="item in vm.ItemList track by item.id">
<input type="checkbox" name="item_{{item.id}}" ng-value="{{item.id}}" ng-model="vm.selectedItem" /> {{item.name}}
</label>
The code above currently selects all items in the ItemList. However, I only need to select one item from the list. How can I achieve this?