82b7e878eeada99c54efbad559d40e29a2fecdb6
[portal/sdk.git] /
1 <style>
2 table tbody td {
3     border: none;
4 }
5
6 table tbody tr {
7     border: none;
8 }
9
10 table tbody{
11     border: none;
12 }
13
14 table {
15     border: none;
16 }
17
18 .grid {
19   width: 100%;
20   height: 400;
21 }
22 .no-rows {
23   position: absolute;
24   top: 0;
25   bottom: 0;
26   width: 100%;
27   background: rgba(0, 0, 0, 0.4);
28 }
29
30 .no-rows .msg {
31   opacity: 1;
32   position: absolute;
33   top: 20%;
34   left: 20%;
35   width: 60%;
36   height: 50%;
37   line-height: 200%;
38   background-color: #eee;
39   border-radius: 4px;
40   border: 1px solid #555;
41   text-align: center;
42   font-size: 24px;
43   display: table;
44 }
45
46 .no-rows .msg span {
47   display: table-cell;
48   vertical-align: middle;
49 }
50 .grid .ui-grid-header-cell {
51   text-align:center;
52 }
53 body {
54         font-size:13px;
55 }
56 </style>
57
58 <div id="page-content">
59         <!-- <h1 class="heading2">{{reportData.reportName}}  -->  
60         <h1 class="heading-page">{{reportData.reportHeading}}
61         <a ng-href="{{reportEditURL}}" ng-show="reportData.allowEdit" class="icon-edit" style="font-size:20px;"></a>
62         
63         &nbsp;&nbsp;&nbsp;<a ng-href="{{reportChartURL}}" ng-show="reportData.allowEdit && reportData.chartWizardAvailable" class="icon-bar-chart-vertical" style="font-size:20px;"></a>
64         &nbsp;&nbsp;&nbsp;<span  ng-show="reportData.allowEdit && showFormFields" ><input type="checkbox" ng-model="showFormFieldIds" ng-true-value="Hide_IDs" ng-false-value="Show_IDs" att-toggle-main></span>
65         
66         <!-- &nbsp;&nbsp;&nbsp;<a ng-href="{{reportChartURLNew}}" ng-show="reportData.allowEdit" class="icon-bar-chart-horizontal" style="font-size:20px;"></a> -->
67         </h1>
68         
69         <h3 class="heading3">{{reportData.reportSubTitle}} </h3>
70           
71           <div ng-show="isInProgress" style="font-size:50px;color:#2ca02c">Loading...</div>
72           
73           <form ng-show="showFormFields" class="row section-row" style="margin: 10px">
74             <form-builder ng-form-fields="reportData.formFieldList" ng-show-field-id="showFormFieldIds" ng-num-form-cols="reportData.numFormCols" ng-model="formFieldSelectedValues" ng-trigger-method="triggerOtherFormFields"></form-builder>
75             <br><br>
76             <button type="submit" style="width: 90px; height:35px;margin-top:20px; margin-left:5px;" class="btn btn-alt btn-small" ng-click="runReport()">Run</button>
77           </form>
78           <a type="submit" ng-show="showBackButton"  style="margin: 10px" ng-href="report.htm#/report_run/{{parentReportUrlParams}}" att-button btn-type="primary" size="small" title='Back'>Back</a>
79           <iframe id="chartiframe" ng-show="showChart" width="100%" height="450px" style="border: none" scrolling="no"></iframe>
80           <div id="errorDiv"></div>
81           <div  ng-if="showGrid">
82                 <div id="grid1" ui-grid="gridOptions" ui-grid-pagination ui-grid-pinning ui-grid-resize-columns class="grid" style="height: {{gridHeight}}">
83                 <div class="no-rows" ng-show="!gridOptions.data.length">
84                 <div class="msg">
85                         <span>{{reportData.message}}</span>
86                 </div>
87             </div>
88          </div>  
89           </div> 
90           <!-- <a type="submit" ng-show="showBackButton"  style="margin: 10px" ng-href="report.htm#/report_run/{{parentReportUrlParams}}" att-button btn-type="primary" size="small" title='Back'>Back</a> -->
91 </div>