Created
December 10, 2014 00:38
-
-
Save RyanABailey/d5e5de34ecb4a7431288 to your computer and use it in GitHub Desktop.
angular grouping radio buttons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <input type="radio" name="myGroup" value="1" ng-model="cbSelection"/> Checkbox 1 | |
| <input type="radio" name="myGroup" value="2" ng-model="cbSelection"/> Checkbox 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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