aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch02-09-ng-repeat-track-id.html
blob: 23ad7dc03aad00c0c0eebf5f501e426686606451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html ng-app="notesApp">
<head>
    <title>Notes App</title>
    <script src="../../tp/angular.js"></script>
    <style>
        span {
            background-color: #cce;
        }
    </style>
</head>
<body ng-controller="MainCtrl as ctrl">

    <button ng-click="ctrl.changeNotes()">Change Notes</button>
    <br/>

    DOM Elements change at every click
    <div ng-repeat="note in ctrl.notes1">
        {{note.$$hashKey}}
        <span class="label"> {{note.label}} </span>
        <span class="author"> {{note.done}} </span>
    </div>
    <br/>

    DOM Elements are reused at every click
    <div ng-repeat="note in ctrl.notes2 track by note.id">
        {{note.$$hashKey}}
        <span class="label"> {{note.label}} </span>
        <span class="author"> {{note.done}} </span>
    </div>

    <script type="text/javascript">
        angular.module('notesApp', []).controller('MainCtrl', [
            function () {
                var self = this;
                var notes = [
                    {id: 1, label: 'First note', done: false, someRandom: 31431},
                    {id: 2, label: 'Second note', done: false},
                    {id: 3, label: 'Finished third note', done: true}
                ];
                self.notes1 = angular.copy(notes);
                self.notes2 = angular.copy(notes);

                self.changeNotes = function () {
                    notes = [
                        {id: 1, label: 'Changed note', done: false, someRandom: 4242},
                        {id: 2, label: 'Second note', done: false},
                        {id: 3, label: 'Finished third note', done: true}
                    ];
                    self.notes1 = angular.copy(notes);
                    self.notes2 = angular.copy(notes);
                }
            }
        ]);
    </script>

</body>
</html>