summaryrefslogtreecommitdiffstats
path: root/reporting/pages/app/views/commons/selectTestcase.html
blob: 4c9e2b34617c60a539788b610ce01fa7bd691e19 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!--select page-->
<div class="row">
    <div classs="container">
        <div class="col-lg-8">
            <div class="ibox float-e-margins">
                <div class="ibox-content">
                    <div>
                        <!--<span class="pull-right text-right">
                                        <small>Average value of sales in the past month in: <strong>United states</strong></small>
                                            <br/>
                                            All sales: 162,862
                                        </span>-->
                        <h3 class="font-bold no-margins">
                            Select Project
                        </h3>
                        <small>Choose a Project to Select Test cases.</small>
                        <div class="pull-right">
                            <selectize options="VersionOption" ng-model="VersionSelected" config="VersionConfig"></selectize>
                        </div>
                    </div>
                    <hr>

                    <div class="m-t-sm">

                        <div class="row">

                            <center>
                                <div data-toggle="buttons" class="m-t-sm">
                                    <label class="btn btn-outline btn-success " style=" margin-right: 5px;" ng-click="toggleSelection('FuncTest')">
                              <input type="radio"  disabled="disabled"  >FuncTest
                            
                                </label>
                                    <label class="btn btn-outline btn-success " style=" margin-right: 5px;" ng-click="toggleSelection('YardStick')">
                              <input type="radio"  disabled="disabled" > YardStick
                            
                                </label>
                                    <label class="btn btn-outline btn-success " style=" margin-right: 5px;" ng-click="toggleSelection('Bottleneck')">
                              <input type="radio"  disabled="disabled" > Bottleneck
                            
                                </label>
                                </div>
                            </center>

                        </div>

                    </div>

                </div>
            </div>
        </div>
        <div class="col-lg-4">
            <div class="ibox float-e-margins">
                <div class="ibox-content">
                    <div>
                        <!--<span class="pull-right text-right">
                                        <small>Average value of sales in the past month in: <strong>United states</strong></small>
                                            <br/>
                                            All sales: 162,862
                                        </span>-->
                        <h3 class="font-bold no-margins">
                            Project Description

                        </h3>



                    </div>
                    <hr>
                    <div class="m-t-sm" ng-show="projectSelect.indexOf('YardStick')!=-1">
                        <p>
                            YardStick is a someting.......
                        </p>
                    </div>
                    <div class="m-t-sm" ng-show="projectSelect.indexOf('FuncTest')!=-1">
                        <p>
                            FuncTest is a someting.......
                        </p>
                    </div>
                    <div class="m-t-sm" ng-show="projectSelect.indexOf('Bottleneck')!=-1">
                        <p>
                            Bottleneck is a someting.......
                        </p>
                    </div>


                </div>
            </div>

        </div>

        <div class="col-lg-12">
            <div class="ibox float-e-margins">
                <div class="ibox-content">
                    <div>
                        <!--<span class="pull-right text-right">
                                        <small>Average value of sales in the past month in: <strong>United states</strong></small>
                                            <br/>
                                            All sales: 162,862
                                        </span>-->
                        <h3 class="font-bold no-margins">
                            Select Test Case
                        </h3>
                        <small>Choose Test Cases </small>

                    </div>
                    <hr>

                    <div class="m-t-sm">
                        <div data-toggle="buttons" class="m-t-sm" ng-show="projectSelect.indexOf('FuncTest')!=-1">
                            <label class="btn btn-outline btn-success " style=" margin-right: 5px;" tooltips tooltip-template="FuncTest is something" tooltip-size="small" ng-repeat="case in funcTestCase" value={{case}} ng-class="{'active': case == selectedFunc}">
                              <input type="checkbox"  disabled="disabled"  >{{case}}
                            
                                </label>
                        </div>
                        <div data-toggle="buttons" class="m-t-sm" ng-show="projectSelect.indexOf('YardStick')!=-1">
                            <label class="btn btn-outline btn-success " style=" margin-right: 5px;" tooltips tooltip-template="FuncTest is something" tooltip-size="small" ng-repeat="case in yardStickCase" value={{case}}>
                              <input type="checkbox"  disabled="disabled"  >{{case}}
                            
                                </label>
                        </div>
                        <div data-toggle="buttons" class="m-t-sm" ng-show="projectSelect.indexOf('Bottleneck')!=-1">
                            <label class="btn btn-outline btn-success " style=" margin-right: 5px;" tooltips tooltip-template="FuncTest is something" tooltip-size="small" ng-repeat="case in bottleNeckCase" value={{case}} ng-class="{'active': case == selectBottle}">
                              <input type="checkbox"  disabled="disabled"  >{{case}}
                            
                                </label>
                        </div>

                    </div>

                </div>


            </div>

        </div>
    </div>
    <div style="margin-top: 10px;" class="pull-right">
        <button class="btn btn-primary" ng-click="test()">Submit</button>
    </div>


</div>