a7955cad0264969d773175311e5b7b4cf04f5a7b
[portal/sdk.git] /
1 <style>
2 .colTableLeftColumn {
3         width: 45%;
4         text-align: right;
5         vertical-align:middle;
6 }
7
8 .colTableInput {
9         width:220px;
10 }
11
12 #columnEditTable .selectWrap{
13         width:220px;
14 }
15 </style>
16
17 <div style="height: 700px;">
18     <div class="b2b-modal-header ng-scope in">
19         <h2 id="myModalLabel" modal-title="">SQL Test Run - {{isError?'Failed':'Executed'}}</h2>
20                         <div class="corner-button in">
21                         <button type="button" class="close" aria-label="Close"
22                                 ng-click="$dismiss('cancel')"></button>
23                 </div>
24         </div>
25         <div class="b2b-modal-body ng-scope ng-isolate-scope in"  style="margin-bottom: -50px;">
26                 <form name="workflowForm" class="css-form" novalidate>
27 <!--                    <div class="form-row input-emphasized-field">
28                                 <label class="span12 input-emphasized" for="textinputID-2a">The selected report will be removed. Do you want to continue</label>
29                         </div> -->
30         <div>
31         
32         <div ng-show="isError">
33         <h2>Error Message:</h2><br>
34         <p>{{errormessage}}</p>
35         <h2>Stack Trace:</h2><br>
36         <p>{{stacktrace}}</p>
37
38         </div>
39     <table class="striped">
40          <thead>
41             <tr>
42                 <th ng-repeat="colName in queryData.reportDataColumns">{{colName}}</th>
43             </tr>
44         </thead>
45         <tbody>
46             <tr ng-repeat="rowData in queryData.reportDataRows">
47                 <td ng-repeat="keyName in queryData.reportDataColumns">{{rowData[keyName]}}</td>
48             </tr>
49
50         </tbody>
51       </table>
52       </div>                            
53                                         <div class="b2b-modal-footer ng-scope ng-isolate-scope in">
54                 <div class="cta-button-group in">
55                         <button class="btn btn-alt btn-small" type="button"
56                                 ng-click="close()">Close</button>
57                 </div>
58         </div>
59                 </form>
60                 <br />
61         </div>
62 </div>