Skip to content

Instantly share code, notes, and snippets.

@superchris
Created May 4, 2015 21:03
Show Gist options
  • Save superchris/8fca8ece881cbc02538c to your computer and use it in GitHub Desktop.
Save superchris/8fca8ece881cbc02538c to your computer and use it in GitHub Desktop.
JS Bin Student Edit Lab solution // source http://jsbin.com/caxuq/12
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta name="description" content="Student Edit Lab solution" />
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
<script src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body ng-controller="StudentCtrl as ctrl">
<ul>
<li ng-repeat="student in ctrl.students" ng-click="ctrl.editStudent(student)">{{student.name}} is {{student.age}}</li>
</ul>
<input name="age" ng-model="ctrl.selectedStudent.name"/><br/>
<input name="age" ng-model="ctrl.selectedStudent.age"/><br/>
<script id="jsbin-javascript">
var app = angular.module("app", []);
app.controller("StudentCtrl", function() {
this.students = [{name: "Joe", age: 23}, {name: "Chris", age: 41}];
this.editStudent = function(student) {
this.selectedStudent = student;
};
});
</script>
<script id="jsbin-source-javascript" type="text/javascript">var app = angular.module("app", []);
app.controller("StudentCtrl", function() {
this.students = [{name: "Joe", age: 23}, {name: "Chris", age: 41}];
this.editStudent = function(student) {
this.selectedStudent = student;
};
});</script></body>
</html>
var app = angular.module("app", []);
app.controller("StudentCtrl", function() {
this.students = [{name: "Joe", age: 23}, {name: "Chris", age: 41}];
this.editStudent = function(student) {
this.selectedStudent = student;
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment