aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/gui/src/main/webapp/_sdh/ng-examples/ch05-01-need-for-service.html
blob: 21d17e4c0e84fbef52d8fe38c695e46925135d17 (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
<!DOCTYPE html>
<html ng-app="notesApp">
<head>
    <title>Notes App</title>
    <script src="../../tp/angular.js"></script>
    <script src="ch05-01-need-for-service-app.js"></script>
</head>
<body ng-controller="MainCtrl as mainCtrl">

    <h1> Hello Controllers! </h1>
    <button ng-click="mainCtrl.open('first')">Open First</button>
    <button ng-click="mainCtrl.open('second')">Open Second</button>

    <div ng-switch on="mainCtrl.tab">

        <div ng-switch-when="first">
            <div ng-controller="SubCtrl as ctrl">
                <h3>First Tab</h3>
                <button ng-click="ctrl.add()">Add more items</button>
                <ul>
                    <li ng-repeat="item in ctrl.list">
                        <span ng-bind="item.label"></span>
                    </li>
                </ul>
            </div>
        </div>

        <div ng-switch-when="second">
            <div ng-controller="SubCtrl as ctrl">
                <h3>Second Tab</h3>
                <button ng-click="ctrl.add()">Add more items</button>
                <ul>
                    <li ng-repeat="item in ctrl.list">
                        <span ng-bind="item.label"></span>
                    </li>
                </ul>
            </div>
        </div>
    </div>
</body>
</html>