Last active
June 19, 2024 07:24
-
-
Save ProNotion/bc1692a02085f4e1d3d3a22214fbbbe4 to your computer and use it in GitHub Desktop.
Umbraco Radio Button List With Default Value
This file contains 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
<div ng-controller="RadioButtonListWithDefault.DropdownController as vm"> | |
<select ng-model="vm.model.value"> | |
<option ng-repeat="item in vm.items" value="{{item.value}}"> | |
{{item.value}} | |
</option> | |
</select> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment