1 <div *ngIf="showSpinner">
2 <div class="lds-ring"><div></div><div></div><div></div><div></div></div>
5 <div *ngIf="!showSpinner">
7 <div *ngFor="let item of drillDownColsList; let i = index;">
11 <th>{{item.name}}</th>
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>
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>
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>
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>
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>
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>
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>