3538be1506c4133120d13414a2986c1b148f9447
[portal/sdk.git] /
1 <div *ngIf="showSpinner">
2     <div class="lds-ring"><div></div><div></div><div></div><div></div></div>
3 </div>
4
5 <div *ngIf="!showSpinner">
6   
7   <div *ngFor="let item of drillDownColsList; let i = index;">
8    
9 <table>
10     <tr>
11       <th>{{item.name}}</th>
12     </tr>
13     <tr>
14       <td><input type="radio" id="test{{i*5+1}}" name="radio-group{{i}}" [(ngModel)]="noValueRadioArr[i*5+1]" value="{{noValueRadioArr[i*5+1]}}"><label for="test{{i*5+1}}"></label></td>
15       <td><label for="test{{i*5+1}}">No Value</label></td>
16       <td><label for="test{{i*5+1}}">Accept Default</label></td>
17     </tr>
18     <tr>
19       <td><input type="radio" id="test{{i*5+2}}" name="radio-group{{i}}" [(ngModel)]="fixedValueRadioArr[i*5+2]" value="{{fixedValueRadioArr[i*5+2]}}"><label for="test{{i*5+2}}"></label></td>
20       <td><label for="test{{i*5+2}}">Fixed Value</label></td>
21       <td><input class="defaultFontSize field-group" id="reportName" type="text"  [(ngModel)]="fixedValueArr[i]" value="{{fixedValueArr[i]}}"/></td>
22     </tr>
23     <tr>
24         <td><input type="radio" id="test{{i*5+3}}" name="radio-group{{i}}" [(ngModel)]="valueOfColRadioArr[i*5+3]" value="{{valueOfColRadioArr[i*5+3]}}"><label for="test{{i*5+3}}"></label></td>
25         <td><label for="test{{i*5+3}}">Value of Column</label></td>
26         <td>
27           <select class="browser-default custom-select defaultFontSize"  required="required" placeholder="Select Value of Column" [(ngModel)]="valueOfColumnsArr[i]"  value="{{valueOfColumnsArr[i]}}">
28             <option *ngFor="let item of valueOfColumnsList" class="defaultFontSize" value="{{item.name}}">{{item.name}}</option>
29             
30           </select>
31         </td>
32     </tr>
33     <tr>
34         <td><input type="radio" id="test{{i*5+4}}" name="radio-group{{i}}" [(ngModel)]="valueOfFormFieldsRadioArr[i*5+4]" value="{{valueOfFormFieldsRadioArr[i*5+4]}}"><label for="test{{i*5+4}}"></label></td>
35         <td><label for="test{{i*5+4}}">Value of form field</label></td>
36         <td>
37             <select class="browser-default custom-select defaultFontSize"  required="required" placeholder="Select Value of Form Field" [(ngModel)]="valueOfFormFieldArr[i]"  value="{{valueOfFormFieldArr[i]}}">
38               <option *ngFor="let item of drillDownColsList" class="defaultFontSize" value="{{item.name}}">{{item.name}}</option>
39             </select>
40           </td>
41     </tr>
42     <tr>
43         <td><input type="radio" id="test{{i*5+5}}" name="radio-group{{i}}" [(ngModel)]="valueSetRadioArr[i*5+5]" value="{{valueSetRadioArr[i*5+5]}}"><label for="test{{i*5+5}}"></label></td>
44         <td><label for="test{{i*5+5}}">Value set</label></td>
45         <td><label>Pass the value of the selected column if not empty, otherwise pass the value of the selected form field.</label></td>
46     </tr>
47     
48     
49     
50   </table>
51     <br/>
52   </div>
53
54 </div>