5767afb283d63f59c30483cd40b7b1565795eb24
[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
26 <!-- <h1 id="tabs---promo">Tabs - Promo</h1>
27 <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
28 <br><br> -->
29  <b2b-tabset tab-id-selected="activeTabsId">
30      <b2b-tab ng-repeat="tab in gTabs" tab-item="tab" 
31               id="{{tab.uniqueId}}" aria-controls="{{tab.tabPanelId}}"
32               ng-disabled="tab.disabled">
33          {{tab.title}}
34      </b2b-tab>
35  </b2b-tabset>
36 <br><br>
37 <!-- <select ng-model="prj" 
38         ng-options="item.projectName for item in allProjects track by item.id" data-ng-init="getAllProjects()" 
39         ng-change="selectAction();">
40     <option value="">Select project</option>
41 </select>
42
43 <a ng-click="createAction()" class="pointer">Create Project</a> -->
44
45 <input type="hidden" name="project_id" ng-model="project_id" value = ""/>
46
47 <div id="stepViewColumn" ng-show = "isColumnStep">
48         <h1>Step 3 : Columns</h1>
49     <table class="striped">
50         <thead>
51             <tr>
52                 <th>No</th>
53                 <th>Column Name</th>
54                 <th>ID</th>
55                 <th>Edit</th>
56             </tr>
57         </thead>
58         <tbody>
59             <tr ng-repeat = "rowData in colTableRowData">
60                 <td>{{$index+1}}</td>
61                 <td>{{rowData.name}}</td>
62                 <td>{{rowData.id}}</td>
63                 <td><a ng-click="openColumnPopup(rowData)" class="icon-misc-pen"></a></td>
64             </tr>
65         </tbody>
66     </table>    
67 </div>
68
69 <div id="stepViewFormField" ng-show = "isFormFieldStep">
70         <h1>Step 4 : Form Fields</h1>
71     <table class="striped">
72         <thead>
73             <tr>
74                 <th>No</th>
75                 <th>Field Name</th>
76                 <th>Edit</th>
77                 <th>Delete</th>                
78             </tr>
79         </thead>
80         <tbody>
81             <tr ng-repeat = "rowData in formFieldData">
82                 <td>{{$index+1}}</td>
83                 <td>{{rowData.name}}[{{rowData.id}}]</td>
84 <!--                 <td>id</td> -->
85                 <td><a ng-click="openFormFieldPopup(rowData)" class="icon-misc-pen"></a></td>
86                 <td><a ng-click="deleteFormField(rowData)" class="icon-misc-trash"></a></td>
87             </tr>
88         </tbody>
89     </table>    
90 </div>
91
92 <div id="stepView">
93 <!--     <step-form ng-model="jsonSrcName" renderForm="changeme"></step-form> -->
94 </div>
95
96
97 <!-- <select id="dropdown1" name="dropdown1" b2b-dropdown placeholder-text="Select" ng-model="selectedReportType.value">
98     <option b2b-dropdown-list option-repeat="d in reportTypes" value="{{d.value}}">{{d.text}}</option>
99 </select>
100 <h1>{{selectedReportType.value}}</h1> -->
101 </div>