Skip to content

Instantly share code, notes, and snippets.

@RyanABailey
Created December 10, 2014 00:38
Show Gist options
  • Select an option

  • Save RyanABailey/d5e5de34ecb4a7431288 to your computer and use it in GitHub Desktop.

Select an option

Save RyanABailey/d5e5de34ecb4a7431288 to your computer and use it in GitHub Desktop.
angular grouping radio buttons
<input type="radio" name="myGroup" value="1" ng-model="cbSelection"/> Checkbox 1
<input type="radio" name="myGroup" value="2" ng-model="cbSelection"/> Checkbox 2
// set initial value
$scope.cbSelection = '1';
// get value
var selection = $scope.cbSelection;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment