summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusion/scripts/DS2-view-models/ds2-reports/modal/report-wizard-drilldown-edit.html
blob: ec2134bfdbca306077c93c54d2b77c5e80fe081e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<style>
#columnEditTable table tbody td {
    border: none;
}

#columnEditTable table tbody tr {
    border: none;
}

.colTableLeftColumn {
	width: 45%;
	vertical-align:center;
}

.colTableInput {
	width:220px;
}

#columnEditTable .selectWrap{
	width:220px;
}

</style>

<div style="height: 700px;">
    <div class="b2b-modal-header ng-scope in">
        <h2 id="myModalLabel" modal-title="">Drill-down Parameters Configuration</h2>
			<div class="corner-button in">
			<button type="button" class="close" aria-label="Close"
				ng-click="$dismiss('cancel')"></button>
		</div>
	</div>
	<div class="b2b-modal-body ng-scope ng-isolate-scope in"  style="margin-bottom: -50px;">
		<form name="workflowForm" class="css-form" novalidate>
			
	<div id="columnEditTable">
    <table class="striped">
        <tbody>
 
        <fieldset role="radiogroup" radio-group-accessibility>
            <tr ng-show="childReportFF.length>0">	
            	<td colspan="2">
            		<h2>User</h2>
            	</td>       
			</tr>            
			
            <tr ng-show="childReportFF.length>0">	
                <td>
                	<div class="form-row" role="radio" style="margin-top:0px;">
			            <label for="optionsRadios1111" class="radio">
			                <input type="radio" ng-model="selectedvalueradioGroup.name" id="optionsRadios1111" name="optionsRadio11" value="noValue" required>
			                <i class="skin"></i>
			                <span>No Value</span>
			            </label>
			        </div>                
                </td>
				<td style="margin-top:10px;">
					<p>Accept Default</p>
				</td>
            </tr>
            
            <tr ng-show="childReportFF.length>0">	
                <td>
                	<div class="form-row" role="radio" style="margin-top:0px;">
			            <label for="optionsRadios2222" class="radio">
			                <input type="radio" ng-model="selectedvalueradioGroup.name" id="optionsRadios2222" name="optionsRadio11" value="fixedValue">
			                <i class="skin"></i>
			                <span>Fixed Value</span>
			            </label>
			        </div>             
                </td>
                <td><input type="text" name="defaultValue" ng-model="fixedValue.value" class="colTableInput"></td>                
            </tr>
            
                                    
            <tr ng-show="childReportFF.length>0">	
                <td>
                	<div class="form-row" role="radio" style="margin-top:0px;">
			            <label for="optionsRadios333333" class="radio">
			                <input type="radio" ng-model="selectedvalueradioGroup.name" id="optionsRadios333333" name="optionsRadio11" value="reportCol">
			                <i class="skin"></i>
			                <span>Value of Column</span>
			        </div>
                </td>
				<td>
					<select name="childReportColumn" b2b-dropdown ng-model="selectedChildReportColumn.value" placeholder-text="Select">
						<option b2b-dropdown-list option-repeat="d in childReportCol" value="{{d.id}}">{{d.name}}</option>
                    </select>
				</td>
                
            </tr>
            
            <tr ng-show="childReportFF.length>0">	
                <td>
                	<div class="form-row" role="radio" style="margin-top:0px;">
                		<label for="optionsRadios444444" class="radio">
                			<input type="radio" ng-model="selectedvalueradioGroup.name" id="optionsRadios444444" name="optionsRadio11" value="reportFF">
                			<i class="skin"></i>
                		<span>Value of Form Field</span>
        			</div>
                </td>
				<td>
					<select name="childReportFormField" b2b-dropdown ng-model="selectedChildReportFormField.value" placeholder-text="Select">
						<option b2b-dropdown-list option-repeat="d in childReportFF" value="{{d.id}}">{{d.name}}</option>
                    </select>
				</td>
            </tr> 

            <tr ng-show="childReportFF.length>0">	
                <td>
                	<div class="form-row" role="radio" style="margin-top:0px;">
			            <label for="optionsRadios5555" class="radio">
			                <input type="radio" ng-model="selectedvalueradioGroup.name" id="optionsRadios5555" name="optionsRadio11" value="valueSet" required>
			                <i class="skin"></i>
			                <span>Value Set</span>
			            </label>
			        </div>                
                </td>
				<td style="margin-top:10px;">
					<p>Pass the value of the selected column if not empty, otherwise pass the value of the selected form field</p>
				</td>
            </tr>
                       
             </fieldset>

			<tr>
				<td colspan="2">
					<h2>Parameter values not to be passed to the drill-down report</h2>       
				</td>
			</tr>            

            <tr>
                <td class="colTableLeftColumn">Suppress Values</td>
                <td><input type="text" name="suppressValue" ng-model="suppressValues.value" class="colTableInput"></td>
            </tr>

        </tbody>
      </table>
      </div>				
					<div class="b2b-modal-footer ng-scope ng-isolate-scope in">
		<div class="cta-button-group in">
			<button class="btn btn-alt btn-small" type="button"
				ng-click="complete()">Complete</button>
		</div>
		
	</div>
		</form>
		<br />
	</div>
</div>