l5m-tools 0.0.11 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +1 -1
- data/README.md +2 -1
- data/VERSION +1 -1
- data/bin/duplicate-app +0 -0
- data/bin/l5m +0 -0
- data/bin/make-app +0 -0
- data/bin/set_env.sh +0 -0
- data/bin/svn.tool +0 -0
- data/l5m-tools.gemspec +8 -7
- data/lib/l5m-tools/application.rb +34 -11
- data/lib/l5m-tools/array.rb +0 -0
- data/lib/l5m-tools/env.rb +2 -2
- data/lib/l5m-tools/ignore/svn_ingore.yaml +0 -0
- data/lib/l5m-tools/l5m-tools-module.rb +0 -0
- data/lib/l5m-tools/svn.rb +0 -0
- data/lib/l5m-tools/template/Template.jsp +53 -116
- data/lib/l5m-tools/template/TemplateBaseAbstractWorker.java +10 -2
- data/lib/l5m-tools/template/TemplateServicerImpl.java +21 -4
- data/lib/l5m-tools/template/TemplateViewer.java +60 -0
- data/lib/l5m-tools/template/frt.jsp +46 -93
- data/lib/l5m-tools/template/ms2.jsp +69 -108
- data/lib/l5m-tools/template/rad.jsp +53 -91
- data/lib/l5m-tools/template/ttv2.jsp +53 -111
- data/lib/l5m-tools/tools.rb +0 -0
- data/lib/l5m-tools.rb +0 -0
- data/test/test_l5m-tools.rb +0 -0
- metadata +35 -27
@@ -6,7 +6,7 @@
|
|
6
6
|
com.l5m.common.l5m_util.rld.*,
|
7
7
|
com.l5m.common.util.*,
|
8
8
|
org.ajaxanywhere.AAUtils,
|
9
|
-
com.l5m.!REPLACE_STYLE!.bean.*,
|
9
|
+
com.l5m.!REPLACE_STYLE!.bean.*, com.l5m.customtags.beans.*, com.l5m.customtags.tags*,
|
10
10
|
com.l5m.!REPLACE_STYLE!.engine.worker.*,
|
11
11
|
com.l5m.common.l5m_util.module.*"
|
12
12
|
%>
|
@@ -28,21 +28,32 @@
|
|
28
28
|
<c:set var="formName" value="${worker.FORM_NAME}" scope="request"/>
|
29
29
|
<c:set var="packageLowerCase" value="${worker.packageLowerCase}" scope="request"/>
|
30
30
|
<c:set var="packageUpperCase" value="${worker.packageUpperCase}" scope="request"/>
|
31
|
-
<c:set var="styleLowerCase" value="${
|
32
|
-
<c:set var="styleUpperCase" value="${
|
31
|
+
<c:set var="styleLowerCase" value="${worker.styleLowerCase}" />
|
32
|
+
<c:set var="styleUpperCase" value="${worker.styleUpperCase}" />>
|
33
33
|
<c:set var="PANEL" value="${worker.PANEL}"/>
|
34
34
|
<%
|
35
35
|
if(AAUtils.isAjaxRequest(request)){
|
36
36
|
AAUtils.addZonesToRefresh(request, "alwaysRefreshZone,"+ ((String)request.getAttribute("refreshZones")));
|
37
37
|
}
|
38
38
|
%>
|
39
|
+
<c:set var="soc" value='${servicer.sourceOptionController}'/>
|
40
|
+
<c:set var='jsCache' value='<%="&__jstimeunique="+System.currentTimeMillis()%>'/>
|
41
|
+
<c:set var='theme' value='${worker.navigationBean.theme}' />
|
42
|
+
<c:set var='_request' value="<%=request%>"/>
|
43
|
+
<c:set var="isIE9Below" value="${l5mfunctions:isIE9Below(_request)}"/>
|
44
|
+
<%
|
45
|
+
|
46
|
+
CSSImportParaBean _cssImport = new CSSImportParaBean(request.getContextPath(), "ms2", 1);
|
47
|
+
JSImportParaBean _jsImport = new JSImportParaBean(request.getContextPath());
|
48
|
+
|
49
|
+
%>
|
39
50
|
<html>
|
40
51
|
|
41
52
|
|
42
53
|
|
43
54
|
|
44
55
|
|
45
|
-
<l5m:jspHead useIE7Compatible="true"
|
56
|
+
<l5m:jspHead useIE7Compatible="true" useCssImport='1' includeJQuery='true' title="${worker.APP_NAME}" formName="${formName}" packageName="${packageLowerCase}" planingCss="L001;L004">
|
46
57
|
|
47
58
|
<!-- add additinal js css in here -->
|
48
59
|
<link href="<%=request.getContextPath()%>/htdoc/datepicker-lite.css" rel="stylesheet" type="text/css" />
|
@@ -84,6 +95,10 @@ if(AAUtils.isAjaxRequest(request)){
|
|
84
95
|
table{
|
85
96
|
border-collapse:collapse;
|
86
97
|
}
|
98
|
+
.grid .TD{border-top:1px dotted #888888;}
|
99
|
+
.grid .LD{border-left:1px dotted #888888;}
|
100
|
+
.grid .row{line-height:33px;}
|
101
|
+
.grid label{white-space:nowrap;}
|
87
102
|
</style>
|
88
103
|
|
89
104
|
|
@@ -114,10 +129,8 @@ if(AAUtils.isAjaxRequest(request)){
|
|
114
129
|
|
115
130
|
<aa:zone name="topNavigationZone">
|
116
131
|
<l5m:TopBar2
|
117
|
-
|
118
|
-
|
119
|
-
iconsStatus = "${worker.iconsStatus}"
|
120
|
-
actions = "${worker.actions}"
|
132
|
+
id="${paraBean.topBarStateBean.id}"
|
133
|
+
topBarItems='${worker.topBarItems}'
|
121
134
|
decimalControlList = "${servicer.reportDecimalControlList}"
|
122
135
|
startControlZone = "topPanel"
|
123
136
|
style = "${styleLowerCase}"
|
@@ -133,9 +146,11 @@ if(AAUtils.isAjaxRequest(request)){
|
|
133
146
|
<table border="0" cellspacing="0" cellpadding="0" width="100%">
|
134
147
|
<tr>
|
135
148
|
<td>
|
136
|
-
|
149
|
+
<c:set var='leftstyle' value='line-height:33px;width:200px;padding-left:7px;border-bottom:1px dotted #888; font-weight:bold;' />
|
150
|
+
<c:set var='righstyle' value='padding-left:10px;border-bottom:1px dotted #888;border-left:1px dotted #888;'/>
|
151
|
+
|
137
152
|
<l5m:tabPanel2
|
138
|
-
|
153
|
+
id="${baseServicerParameterBean.tabPanelID}"
|
139
154
|
captions="${baseServicerParameterBean.tabbedPanelCaptions}"
|
140
155
|
selected="${baseServicerParameterBean.selectedTab}"
|
141
156
|
style="${styleLowerCase}"
|
@@ -161,7 +176,12 @@ if(AAUtils.isAjaxRequest(request)){
|
|
161
176
|
|
162
177
|
<aa:zone name="sourcePanelZone">
|
163
178
|
<table id='sourcePanel' border="0" cellspacing="0" cellpadding="0" width="100%">
|
164
|
-
<tr
|
179
|
+
<tr class="row">
|
180
|
+
<td class="TD" style="${leftstyle};" nowrap valign="top"> /td>
|
181
|
+
<td class="TD LD" style="${righstyle}; line-height:16px;">
|
182
|
+
|
183
|
+
</td>
|
184
|
+
</tr>
|
165
185
|
</table>
|
166
186
|
</aa:zone>
|
167
187
|
</td>
|
@@ -203,80 +223,14 @@ if(AAUtils.isAjaxRequest(request)){
|
|
203
223
|
<tr>
|
204
224
|
<td align="left" valign="top" width="99%">
|
205
225
|
<aa:zone name="result">
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
${panel.label}
|
215
|
-
</div>
|
216
|
-
</c:if>
|
217
|
-
<c:if test="${false}">
|
218
|
-
<div style=' ${worker.servicer.panelIndex == panelIndex.index || !true ?"cursor: none" : ""} ; white-space:nowrap; ${worker.servicer.panelIndex == panelIndex.index || true ?"font-weight: bold" : ""} ; font-size:11px; border-top-width:0px;${panelIndex.first?"border-left-width:0px":""}' nowrap id="displayBy_${panelIndex.index }" onclick="${baseServicerParameterBean.panelIndex== panelIndex.index ? '':(true? jsChangePanel:'')}" class="${worker.servicer.panelIndex== panelIndex.index? 'focus' :true?'base':'base'}" >
|
219
|
-
${panel.label }
|
220
|
-
</div>
|
221
|
-
</c:if>
|
222
|
-
</c:if>
|
223
|
-
</c:forEach>
|
224
|
-
<div class="last"> </div>
|
225
|
-
</div>
|
226
|
-
<div style='clear:both'/>
|
227
|
-
<table width="100%">
|
228
|
-
<tr>
|
229
|
-
<td nowrap="nowrap" height="40px" style="padding-left:5px;" >
|
230
|
-
</td>
|
231
|
-
<td nowrap="nowrap" height="40px" style="text-align:right; float:right ;padding-right:10px;">
|
232
|
-
${worker.renderPaginatorHTML}
|
233
|
-
</td>
|
234
|
-
</tr>
|
235
|
-
</table>
|
236
|
-
|
237
|
-
|
238
|
-
<table border="0" cellpadding="0" cellspacing="0" width="100%" >
|
239
|
-
<tr> <td nowrap="nowrap" align='left' >
|
240
|
-
<c:if test="${baseServicerParameterBean.panelIndex !=worker.help && baseServicerParameterBean.panelIndex !=worker.dataAvailability}" >
|
241
|
-
</c:if>
|
242
|
-
</td></tr>
|
243
|
-
<tr>
|
244
|
-
<td nowrap="nowrap" align='center' >
|
245
|
-
${worker.renderHTML}
|
246
|
-
</td>
|
247
|
-
</tr>
|
248
|
-
</table>
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
<c:if test="${baseServicerParameterBean.panelIndex ==worker.help}">
|
257
|
-
<!-- the div of descriptionTab -->
|
258
|
-
<div id="descriptionTab"><br/><br/><l5m:appDesc
|
259
|
-
navigationBean="${worker.navigationBean}" style="${styleLowerCase}" id="navDesc" />
|
260
|
-
</div>
|
261
|
-
<!-- the end descriptionTab-->
|
262
|
-
</c:if>
|
263
|
-
|
264
|
-
<c:if test="${baseServicerParameterBean.panelIndex ==worker.dataAvailability}">
|
265
|
-
<table width="100%">
|
266
|
-
<tr>
|
267
|
-
<td width="15%" rowspan="4"> </td>
|
268
|
-
<td width="70%">
|
269
|
-
<c:set var="moduleGeneralAvailability" scope="request" value="${worker.servicer.generalAvailabilityModule}"/>
|
270
|
-
<!-- GeneralAvailabilityModule.SESSION_NAME -->
|
271
|
-
<table border="0" cellpadding="0" cellspacing="2" width="100%">
|
272
|
-
<jsp:include page="GeneralAvailabilityModule.jsp" flush="true"/>
|
273
|
-
</table>
|
274
|
-
</td>
|
275
|
-
<td width="15%" rowspan="4"> </td>
|
276
|
-
</tr>
|
277
|
-
</table>
|
278
|
-
|
279
|
-
</c:if>
|
226
|
+
<l5m:resultZone
|
227
|
+
panels='${PANEL}'
|
228
|
+
formName="${worker.FORM_NAME}" packageName="${packageLowerCase}" style="${styleLowerCase}"
|
229
|
+
groupId="${servicer.groupId}" companyId="${servicer.companyId}"
|
230
|
+
userId="${servicer.userId}"
|
231
|
+
dbHandler="${servicer.dbHandler}" usingDefaultPaginatorRender='false'
|
232
|
+
|
233
|
+
/>
|
280
234
|
</aa:zone>
|
281
235
|
</td>
|
282
236
|
</tr>
|
@@ -340,15 +294,17 @@ if(AAUtils.isAjaxRequest(request)){
|
|
340
294
|
<td style="text-align:left;white-space:nowrap;" valign="top">
|
341
295
|
<c:if test="${!empty paraBean.displayWrappers[paraBean.panelIndex]}">
|
342
296
|
<c:forEach var="displayWrapper" items="${paraBean.displayWrappers[paraBean.panelIndex]}">
|
343
|
-
|
297
|
+
<c:if test="${!empty displayWrapper.columnsMap}">
|
298
|
+
<div style="${displayWrapper.hidden?'display:none;':''}">
|
344
299
|
<l5m:multipleSelect
|
345
300
|
id="${displayWrapper.id}"
|
346
301
|
style="${styleLowerCase}"
|
347
302
|
title="${displayWrapper.title}"
|
348
303
|
sourceValues="${displayWrapper.columnsMap}"
|
349
304
|
selectedValues="${displayWrapper.selectedColumns }"
|
305
|
+
selectedValue="${displayWrapper.selectedValue}"
|
350
306
|
onChange=""
|
351
|
-
displayMode="
|
307
|
+
displayMode="${displayWrapper.displayMode}"
|
352
308
|
useSortBy="true"
|
353
309
|
sortBy="1"
|
354
310
|
sortField="2"
|
@@ -358,7 +314,8 @@ if(AAUtils.isAjaxRequest(request)){
|
|
358
314
|
destinationWidth="200"
|
359
315
|
sourceSize="5"
|
360
316
|
destinationSize="5"
|
361
|
-
/>
|
317
|
+
/>
|
318
|
+
</div>
|
362
319
|
</c:if>
|
363
320
|
</c:forEach>
|
364
321
|
</c:if>
|
@@ -433,11 +390,7 @@ if(AAUtils.isAjaxRequest(request)){
|
|
433
390
|
<a href="javascript:pageAction.clickExportButton('<%=ActionConstants.EXPORT_EXCEL%>');">[Apply]</a>
|
434
391
|
</l5m:dialogBottom>
|
435
392
|
</l5m:dialog>
|
436
|
-
|
437
|
-
<aa:zone name="footerZone">
|
438
|
-
<l5m:jspFoot id="jspFoot"/>
|
439
|
-
</aa:zone>
|
440
|
-
|
393
|
+
|
441
394
|
<!-- end dialog -->
|
442
395
|
|
443
396
|
</l5m:jspBody>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
com.l5m.common.l5m_util.bean.*,
|
6
6
|
com.l5m.common.l5m_util.rld.*,
|
7
7
|
com.l5m.common.util.*,
|
8
|
-
org.ajaxanywhere.AAUtils,
|
8
|
+
org.ajaxanywhere.AAUtils, com.l5m.customtags.beans.*, com.l5m.customtags.tags*,
|
9
9
|
com.l5m.!REPLACE_STYLE!.bean.*,
|
10
10
|
com.l5m.!REPLACE_STYLE!.engine.worker.*,
|
11
11
|
com.l5m.common.l5m_util.module.*"
|
@@ -26,15 +26,25 @@
|
|
26
26
|
<c:set var="formName" value="${worker.FORM_NAME}" scope="request"/>
|
27
27
|
<c:set var="packageLowerCase" value="${worker.packageLowerCase}" scope="request"/>
|
28
28
|
<c:set var="packageUpperCase" value="${worker.packageUpperCase}" scope="request"/>
|
29
|
-
<c:set var="styleLowerCase" value="${
|
30
|
-
<c:set var="styleUpperCase" value="${
|
29
|
+
<c:set var="styleLowerCase" value="${worker.styleLowerCase}" />
|
30
|
+
<c:set var="styleUpperCase" value="${worker.styleUpperCase}" />
|
31
31
|
<c:set var="PANEL" value="${worker.PANEL}"/>
|
32
32
|
<%
|
33
33
|
if(AAUtils.isAjaxRequest(request)){
|
34
34
|
AAUtils.addZonesToRefresh(request, "alwaysRefreshZone,"+ ((String)request.getAttribute("refreshZones")));
|
35
35
|
}
|
36
36
|
%><!-- -->
|
37
|
+
<c:set var="soc" value='${servicer.sourceOptionController}'/>
|
38
|
+
<c:set var='jsCache' value='<%="&__jstimeunique="+System.currentTimeMillis()%>'/>
|
39
|
+
<c:set var='theme' value='${worker.navigationBean.theme}' />
|
40
|
+
<c:set var='_request' value="<%=request%>"/>
|
41
|
+
<c:set var="isIE9Below" value="${l5mfunctions:isIE9Below(_request)}"/>
|
42
|
+
<%
|
37
43
|
|
44
|
+
CSSImportParaBean _cssImport = new CSSImportParaBean(request.getContextPath(), "ms2", 1);
|
45
|
+
JSImportParaBean _jsImport = new JSImportParaBean(request.getContextPath());
|
46
|
+
|
47
|
+
%>
|
38
48
|
|
39
49
|
<html>
|
40
50
|
|
@@ -42,7 +52,7 @@ if(AAUtils.isAjaxRequest(request)){
|
|
42
52
|
|
43
53
|
|
44
54
|
|
45
|
-
<l5m:jspHead useIE7Compatible="true" includeJQuery='true' title="${worker.APP_NAME}" formName="${formName}" packageName="${packageLowerCase}" planingCss="L001;L004">
|
55
|
+
<l5m:jspHead useIE7Compatible="true" useCssImport='1' includeJQuery='true' title="${worker.APP_NAME}" formName="${formName}" packageName="${packageLowerCase}" planingCss="L001;L004">
|
46
56
|
|
47
57
|
<!-- add additinal js css in here -->
|
48
58
|
<link href="<%=request.getContextPath()%>/htdoc/datepicker-lite.css" rel="stylesheet" type="text/css" />
|
@@ -84,9 +94,21 @@ if(AAUtils.isAjaxRequest(request)){
|
|
84
94
|
table{
|
85
95
|
border-collapse:collapse;
|
86
96
|
}
|
97
|
+
.grid .TD{border-top:1px dotted #888888;}
|
98
|
+
.grid .LD{border-left:1px dotted #888888;}
|
99
|
+
.grid .row{line-height:33px;}
|
100
|
+
.grid label{white-space:nowrap;}
|
87
101
|
</style>
|
88
102
|
|
89
103
|
|
104
|
+
<%=_cssImport.getCSSFileImports3(
|
105
|
+
|
106
|
+
)%>
|
107
|
+
|
108
|
+
|
109
|
+
<%=_jsImport.getJSFileImports3(
|
110
|
+
|
111
|
+
)%>
|
90
112
|
|
91
113
|
|
92
114
|
|
@@ -115,10 +137,8 @@ if(AAUtils.isAjaxRequest(request)){
|
|
115
137
|
|
116
138
|
<aa:zone name="topNavigationZone">
|
117
139
|
<l5m:TopBar2
|
118
|
-
|
119
|
-
|
120
|
-
iconsStatus = "${worker.iconsStatus}"
|
121
|
-
actions = "${worker.actions}"
|
140
|
+
id="${paraBean.topBarStateBean.id}"
|
141
|
+
topBarItems='${worker.topBarItems}'
|
122
142
|
decimalControlList = "${servicer.reportDecimalControlList}"
|
123
143
|
startControlZone = "topPanel"
|
124
144
|
style = "${styleLowerCase}"
|
@@ -134,9 +154,11 @@ if(AAUtils.isAjaxRequest(request)){
|
|
134
154
|
<table border="0" cellspacing="0" cellpadding="0" width="100%">
|
135
155
|
<tr>
|
136
156
|
<td>
|
137
|
-
|
157
|
+
<c:set var='leftstyle' value='line-height:33px;width:200px;padding-left:7px;border-bottom:1px dotted #888; font-weight:bold;' />
|
158
|
+
<c:set var='righstyle' value='padding-left:10px;border-bottom:1px dotted #888;border-left:1px dotted #888;'/>
|
159
|
+
|
138
160
|
<l5m:tabPanel2
|
139
|
-
id="
|
161
|
+
id="${baseServicerParameterBean.tabPanelID}"
|
140
162
|
captions="${baseServicerParameterBean.tabbedPanelCaptions}"
|
141
163
|
selected="${baseServicerParameterBean.selectedTab}"
|
142
164
|
style="${styleLowerCase}"
|
@@ -162,7 +184,13 @@ if(AAUtils.isAjaxRequest(request)){
|
|
162
184
|
|
163
185
|
<aa:zone name="sourcePanelZone">
|
164
186
|
<table id='sourcePanel' border="0" cellspacing="0" cellpadding="0" width="100%">
|
165
|
-
|
187
|
+
<tr class="row">
|
188
|
+
<td class="TD" style="${leftstyle};" nowrap valign="top"> /td>
|
189
|
+
<td class="TD LD" style="${righstyle}; line-height:16px;">
|
190
|
+
|
191
|
+
</td>
|
192
|
+
</tr>
|
193
|
+
|
166
194
|
</table>
|
167
195
|
</aa:zone>
|
168
196
|
</td>
|
@@ -204,80 +232,14 @@ if(AAUtils.isAjaxRequest(request)){
|
|
204
232
|
<tr>
|
205
233
|
<td align="left" valign="top" width="99%">
|
206
234
|
<aa:zone name="result">
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
${panel.label}
|
216
|
-
</div>
|
217
|
-
</c:if>
|
218
|
-
<c:if test="${false}">
|
219
|
-
<div style=' ${worker.servicer.panelIndex == panelIndex.index || !true ?"cursor: none" : ""} ; white-space:nowrap; ${worker.servicer.panelIndex == panelIndex.index || true ?"font-weight: bold" : ""} ; font-size:11px; border-top-width:0px;${panelIndex.first?"border-left-width:0px":""}' nowrap id="displayBy_${panelIndex.index }" onclick="${baseServicerParameterBean.panelIndex== panelIndex.index ? '':(true? jsChangePanel:'')}" class="${worker.servicer.panelIndex== panelIndex.index? 'focus' :true?'base':'base'}" >
|
220
|
-
${panel.label }
|
221
|
-
</div>
|
222
|
-
</c:if>
|
223
|
-
</c:if>
|
224
|
-
</c:forEach>
|
225
|
-
<div class="last"> </div>
|
226
|
-
</div>
|
227
|
-
<div style='clear:both'/>
|
228
|
-
<table width="100%">
|
229
|
-
<tr>
|
230
|
-
<td nowrap="nowrap" height="40px" style="padding-left:5px;" >
|
231
|
-
</td>
|
232
|
-
<td nowrap="nowrap" height="40px" style="text-align:right; float:right ;padding-right:10px;">
|
233
|
-
${worker.renderPaginatorHTML}
|
234
|
-
</td>
|
235
|
-
</tr>
|
236
|
-
</table>
|
237
|
-
|
238
|
-
|
239
|
-
<table border="0" cellpadding="0" cellspacing="0" width="100%" >
|
240
|
-
<tr> <td nowrap="nowrap" align='left' >
|
241
|
-
<c:if test="${baseServicerParameterBean.panelIndex !=worker.help && baseServicerParameterBean.panelIndex !=worker.dataAvailability}" >
|
242
|
-
</c:if>
|
243
|
-
</td></tr>
|
244
|
-
<tr>
|
245
|
-
<td nowrap="nowrap" align='center' >
|
246
|
-
${worker.renderHTML}
|
247
|
-
</td>
|
248
|
-
</tr>
|
249
|
-
</table>
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
<c:if test="${baseServicerParameterBean.panelIndex ==worker.help}">
|
258
|
-
<!-- the div of descriptionTab -->
|
259
|
-
<div id="descriptionTab"><br/><br/><l5m:appDesc
|
260
|
-
navigationBean="${worker.navigationBean}" style="${styleLowerCase}" id="navDesc" />
|
261
|
-
</div>
|
262
|
-
<!-- the end descriptionTab-->
|
263
|
-
</c:if>
|
264
|
-
|
265
|
-
<c:if test="${baseServicerParameterBean.panelIndex ==worker.dataAvailability}">
|
266
|
-
<table width="100%">
|
267
|
-
<tr>
|
268
|
-
<td width="15%" rowspan="4"> </td>
|
269
|
-
<td width="70%">
|
270
|
-
<c:set var="moduleGeneralAvailability" scope="request" value="${worker.servicer.generalAvailabilityModule}"/>
|
271
|
-
<!-- GeneralAvailabilityModule.SESSION_NAME -->
|
272
|
-
<table border="0" cellpadding="0" cellspacing="2" width="100%">
|
273
|
-
<jsp:include page="GeneralAvailabilityModule.jsp" flush="true"/>
|
274
|
-
</table>
|
275
|
-
</td>
|
276
|
-
<td width="15%" rowspan="4"> </td>
|
277
|
-
</tr>
|
278
|
-
</table>
|
279
|
-
|
280
|
-
</c:if>
|
235
|
+
<l5m:resultZone
|
236
|
+
panels='${PANEL}'
|
237
|
+
formName="${worker.FORM_NAME}" packageName="${packageLowerCase}" style="${styleLowerCase}"
|
238
|
+
groupId="${servicer.groupId}" companyId="${servicer.companyId}"
|
239
|
+
userId="${servicer.userId}"
|
240
|
+
dbHandler="${servicer.dbHandler}" usingDefaultPaginatorRender='false'
|
241
|
+
|
242
|
+
/>
|
281
243
|
</aa:zone>
|
282
244
|
</td>
|
283
245
|
</tr>
|
@@ -344,24 +306,27 @@ if(AAUtils.isAjaxRequest(request)){
|
|
344
306
|
<c:if test="${!empty paraBean.displayWrappers[paraBean.panelIndex]}">
|
345
307
|
<c:forEach var="displayWrapper" items="${paraBean.displayWrappers[paraBean.panelIndex]}">
|
346
308
|
<c:if test="${!empty displayWrapper.columnsMap}">
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
309
|
+
<div style="${displayWrapper.hidden?'display:none;':''}">
|
310
|
+
<l5m:multipleSelect
|
311
|
+
id="${displayWrapper.id}"
|
312
|
+
style="${styleLowerCase}"
|
313
|
+
title="${displayWrapper.title}"
|
314
|
+
sourceValues="${displayWrapper.columnsMap}"
|
315
|
+
selectedValues="${displayWrapper.selectedColumns }"
|
316
|
+
selectedValue="${displayWrapper.selectedValue}"
|
317
|
+
onChange=""
|
318
|
+
displayMode="${displayWrapper.displayMode}"
|
319
|
+
useSortBy="true"
|
320
|
+
sortBy="1"
|
321
|
+
sortField="2"
|
322
|
+
selectedLabel="Select"
|
323
|
+
sourceLabel="${displayWrapper.title}"
|
324
|
+
sourceWidth="200"
|
325
|
+
destinationWidth="200"
|
326
|
+
sourceSize="5"
|
327
|
+
destinationSize="5"
|
328
|
+
/>
|
329
|
+
</div>
|
365
330
|
</c:if>
|
366
331
|
</c:forEach>
|
367
332
|
</c:if>
|
@@ -437,11 +402,7 @@ if(AAUtils.isAjaxRequest(request)){
|
|
437
402
|
</l5m:dialogBottom>
|
438
403
|
</l5m:dialog>
|
439
404
|
|
440
|
-
|
441
|
-
<aa:zone name="footerZone">
|
442
|
-
<l5m:jspFoot id="jspFoot"/>
|
443
|
-
</aa:zone>
|
444
|
-
|
405
|
+
|
445
406
|
<!-- end dialog -->
|
446
407
|
|
447
408
|
</l5m:jspBody>
|