Skip to content

Instantly share code, notes, and snippets.

@IgorMinar
Forked from mhevery/gist:891437
Created October 17, 2011 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IgorMinar/1293065 to your computer and use it in GitHub Desktop.
Save IgorMinar/1293065 to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="http://code.angularjs.org/angular-0.10.3.js" ng:autobind></script>
<script>
function MyCntrl() {
this.list_of_items = ['this', 'that', 'the other'];
this.foo = {choice:'that'};
}
MyCntrl.prototype = {
loadData: function(){
this.foo = {choice:'that'};
}
}
</script>
</head>
<body ng:controller="MyCntrl">
<ul>
<li ng:repeat="item in list_of_items">
<input type="radio" ng:model="foo.choice" value="{{item}}" name="choice"
id="item_{{$index}}">
<label for="item_{{$index}}">
<code>{{item}}</code>
</label>
</li>
<a class="action" href="" ng:click="loadData()">Load</a>
</ul>
choice: {{foo}}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment