6665dcf2a54b95a828384f27fb040910cadd25a1
[portal/sdk.git] /
1 <!-- <link rel="stylesheet" type="text/css" href="static/fusion/raptor/css/raptor.css"> -->
2 <style>
3 #stepView table tbody td {
4     border: none;
5 }
6
7 #stepView table tbody tr {
8     border: none;
9 }
10
11
12 .selectWrap {
13         width: 300px;
14 }
15 .tdLeftColumn {
16         text-align: right;
17         vertical-align:middle;
18 }
19 </style>
20
21 <div id="page-content">
22 <h1 class="heading-page">Report Wizard</h1>
23
24
25 <!-- <h1 id="tabs---promo">Tabs - Promo</h1>
26 <button class="btn btn-secondary btn-small" ng-click="gTabs[3].disabled = !gTabs[3].disabled">{{gTabs[3].disabled?'Enable':'Disable'}}</button> - Toggle 4th (Features) Tab
27 <br><br> -->
28  <b2b-tabset tab-id-selected="activeTabsId">
29      <b2b-tab ng-repeat="tab in gTabs" tab-item="tab" 
30               id="{{tab.uniqueId}}" aria-controls="{{tab.tabPanelId}}"
31               ng-disabled="tab.disabled">
32          {{tab.title}}
33      </b2b-tab>
34  </b2b-tabset>
35 <br><br>
36 <div ng-show="showLoader" class="span loader-container">
37         <i class="icon-primary-spinner" role="img"
38                 aria-label="Please wait while we load your content"></i>
39 </div>
40
41 <div ng-hide="showLoader">
42
43 <!-- <select ng-model="prj" 
44         ng-options="item.projectName for item in allProjects track by item.id" data-ng-init="getAllProjects()" 
45         ng-change="selectAction();">
46     <option value="">Select project</option>
47 </select>
48
49 <a ng-click="createAction()" class="pointer">Create Project</a> -->
50
51 <input type="hidden" name="project_id" ng-model="project_id" value = ""/>
52
53 <div id="stepViewColumn" ng-show = "isColumnStep">
54         <h1>Step 3 : Columns</h1>
55     <table class="striped">
56         <thead>
57             <tr>
58                 <th>No</th>
59                 <th>Column Name</th>
60                 <th>ID</th>
61                 <th>Edit</th>
62             </tr>
63         </thead>
64         <tbody>
65             <tr ng-repeat = "rowData in colTableRowData">
66                 <td>{{$index+1}}</td>
67                 <td>{{rowData.name}}</td>
68                 <td>{{rowData.id}}</td>
69                 <td><a ng-click="openColumnPopup(rowData)" class="icon-misc-pen"></a></td>
70             </tr>
71         </tbody>
72     </table>    
73 </div>
74
75 <div id="stepViewFormField" ng-show = "isFormFieldStep">
76         <h1>Step 4 : Form Fields</h1>
77     <table class="striped">
78         <thead>
79             <tr>
80                 <th>No</th>
81                 <th>Field Name</th>
82                 <th>Edit</th>
83                 <th>Delete</th>                
84             </tr>
85         </thead>
86         <tbody>
87             <tr ng-repeat = "rowData in formFieldData">
88                 <td>{{$index+1}}</td>
89                 <td>{{rowData.name}}[{{rowData.id}}]</td>
90 <!--                 <td>id</td> -->
91                 <td><a ng-click="openFormFieldPopup(rowData)" class="icon-misc-pen"></a></td>
92                 <td><a ng-click="deleteFormField(rowData)" class="icon-misc-trash"></a></td>
93             </tr>
94         </tbody>
95     </table>    
96 </div>
97
98 <div id="stepView">
99 <!--     <step-form ng-model="jsonSrcName" renderForm="changeme"></step-form> -->
100 </div>
101 </div>
102
103 <!-- <select id="dropdown1" name="dropdown1" b2b-dropdown placeholder-text="Select" ng-model="selectedReportType.value">
104     <option b2b-dropdown-list option-repeat="d in reportTypes" value="{{d.value}}">{{d.text}}</option>
105 </select>
106 <h1>{{selectedReportType.value}}</h1> -->
107 </div>