2 #columnEditTable table tbody td {
6 #columnEditTable table tbody tr {
12 vertical-align:center;
19 #columnEditTable .selectWrap{
25 <div style="height: 700px;">
26 <div class="b2b-modal-header ng-scope in">
27 <h2 id="myModalLabel" modal-title="">Drill-down Parameters Configuration</h2>
28 <div class="corner-button in">
29 <button type="button" class="close" aria-label="Close"
30 ng-click="$dismiss('cancel')"></button>
33 <div class="b2b-modal-body ng-scope ng-isolate-scope in" style="margin-bottom: -50px;">
34 <form name="workflowForm" class="css-form" novalidate>
36 <div id="columnEditTable" ng-repeat="drillDownOption in drillDownOptionList">
37 <table class="striped">
39 <fieldset role="radiogroup" radio-group-accessibility>
40 <tr ng-show="childReportFF.length>0||childReportCol.length>0">
42 <h2>{{drillDownOption.name}}</h2>
47 <tr ng-show="childReportFF.length>0||childReportCol.length>0">
49 <div class="form-row" role="radio" style="margin-top:0px;">
50 <label for="optionsRadios2{{$index}}" class="radio">
51 <input type="radio" ng-model="drillDownOption.selectedvalueradioGroup.name" id="optionsRadios2{{$index}}" name="optionsRadio2{{$index}}" value="fixedValue">
53 <span>Fixed Value</span>
57 <td><input type="text" name="defaultValue" ng-model="drillDownOption.fixedValue.value" class="colTableInput"></td>
61 <tr ng-show="childReportCol.length>0">
63 <div class="form-row" role="radio" style="margin-top:0px;">
64 <label for="optionsRadios3{{$index}}" class="radio">
65 <input type="radio" ng-model="drillDownOption.selectedvalueradioGroup.name" id="optionsRadios3{{$index}}" name="optionsRadio3{{$index}}" value="reportCol">
67 <span>Value of Column</span>
71 <select name="childReportColumn" b2b-dropdown ng-model="drillDownOption.selectedChildReportColumn.value" placeholder-text="Select">
72 <option b2b-dropdown-list option-repeat="d in childReportCol" value="{{d.id}}">{{d.name}}</option>
78 <tr ng-show="childReportFF.length>0">
80 <div class="form-row" role="radio" style="margin-top:0px;">
81 <label for="optionsRadios4{{$index}}" class="radio">
82 <input type="radio" ng-model="drillDownOption.selectedvalueradioGroup.name" id="optionsRadios4{{$index}}" name="optionsRadio4{{$index}}" value="reportFF">
84 <span>Value of Form Field</span>
88 <select name="childReportFormField" b2b-dropdown ng-model="drillDownOption.selectedChildReportFormField.value" placeholder-text="Select">
89 <option b2b-dropdown-list option-repeat="d in childReportFF" value="{{d.id}}">{{d.name}}</option>
102 <div class="b2b-modal-footer ng-scope ng-isolate-scope in">
103 <div class="cta-button-group in">
104 <button class="btn btn-alt btn-small" type="button"
105 ng-click="complete()">Complete</button>