-
Notifications
You must be signed in to change notification settings - Fork 0
/
formSession.cfm
480 lines (475 loc) · 15.1 KB
/
formSession.cfm
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
<cfif isDefined("Sess.RecordCount") and Sess.RecordCount eq 0>
<cfset pageTitle = "No Instructional Session Found">
<cfinclude template="incBegin.cfm">
<span class="dataSectionTitle">Error!</span>
<div class="data">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td class="first">No instructional session found</td>
</tr>
</table>
</div>
<cfelse>
<cfscript>
if (Find("addSession.cfm", SCRIPT_NAME))
{
pageTitle = "Add an Instructional Session";
}
else if (Find("updateSession.cfm", SCRIPT_NAME))
{
pageTitle = "Update Instructional Session";
}
else
{
pageTitle = "Instructional Session";
}
</cfscript>
<cfinclude template="incBegin.cfm">
<cfinclude template="incJSShowCalendar.cfm">
<script language="JavaScript" type="text/javascript">
<!--
// create a new object for each form element you need to validate
var QuarterID = new validation('a quarter', 'QuarterID', 'select', 'isSelect(formObj)', null);
var SessionDate = new validation('a sesssion date', 'SessionDate', 'text', 'isDate(str)', 'mm/dd/yyyy');
var Hour = new validation('a session time', 'Hour', 'select', 'isSelect(formObj)', null);
var Marker = new validation('AM or PM for the session time', 'Marker', 'select', 'isSelect(formObj)', null);
//var GroupName = new validation('a group name', 'GroupName', 'text', 'isText(formObj)', null);
var elts = new Array( QuarterID, SessionDate, Hour, Marker ); //, GroupName );
var allAtOnce = false;
var beginRequestAlertForText = "Please include ";
var beginRequestAlertGeneric = "Please choose ";
var endRequestAlert = ".";
var beginInvalidAlert = " is an invalid ";
var endInvalidAlert = "!";
var beginFormatAlert = "Use the format: ";
function validateForm(form)
{
var formEltName = "";
var formObj = "";
var str = "";
var realName = "";
var alertText = "";
var firstMissingElt = null;
var hardReturn = "\r\n";
if ( form.version.value == 'main' )
{
for (i=0; i<elts.length; i++)
{
formEltName = elts[i].formEltName;
formObj = eval("form." + formEltName);
realName = elts[i].realName;
if (elts[i].eltType == "text")
{
str = formObj.value;
if (eval(elts[i].upToSnuff))
continue;
if (str == "")
{
if (allAtOnce)
{
alertText += beginRequestAlertForText + realName + endRequestAlert + hardReturn;
if (firstMissingElt == null)
{
firstMissingElt = formObj;
}
}
else
{
alertText = beginRequestAlertForText + realName + endRequestAlert + hardReturn;
alert(alertText);
}
}
else
{
if (allAtOnce)
{
alertText += str + beginInvalidAlert + realName + endInvalidAlert + hardReturn;
}
else
{
alertText = str + beginInvalidAlert + realName + endInvalidAlert + hardReturn;
}
if (elts[i].format != null)
{
alertText += beginFormatAlert + elts[i].format + hardReturn;
}
if (allAtOnce)
{
if (firstMissingElt == null)
{
firstMissingElt = formObj;
}
}
else
{
alert(alertText);
}
}
}
else
{
if (eval(elts[i].upToSnuff))
continue;
if (allAtOnce)
{
alertText += beginRequestAlertGeneric + realName + endRequestAlert + hardReturn;
if (firstMissingElt == null)
{
firstMissingElt = formObj;
}
}
else
{
alertText = beginRequestAlertGeneric + realName + endRequestAlert + hardReturn;
alert(alertText);
}
}
if (!isIE3)
{
var goToObj = (allAtOnce) ? firstMissingElt : formObj;
if (goToObj.select)
goToObj.select();
if (goToObj.focus)
goToObj.focus();
}
if (!allAtOnce)
{
return false;
}
}
if (allAtOnce)
{
if (alertText != "")
{
alert(alertText);
return false;
}
}
// alert("I am valid!"); //remove this when you use the code
return true; //change this to return true
}
else
return true;
}
//-->
</script>
<cfoutput>
<cfscript>
if (Find("updateSession", SCRIPT_NAME))
{
Action = "updateSession.cfm";
}
else if (Find("addSession", SCRIPT_NAME))
{
Action = "addSession.cfm";
}
</cfscript>
<form action="#Action#"
method="post"
name="Session"
id="Session"
onsubmit="JavaScript:return validateForm(this);">
<span class="formSectionTitle">#pageTitle#</span>
<div class="form">
<cfif not up2snuff>
<div class="formSectionTitleErr" style="width:50%;">#em#<br></div>
</cfif>
<input type="hidden" name="version" value="" />
<table border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td colspan="4">
Instructional activity title<br>
<cfif Find("updateSession.cfm", SCRIPT_NAME)>
<input name="Title" type="text" disabled="true" value="#Sess.Title#" size="65" readonly="true">
<cfelseif Find("addSession.cfm", SCRIPT_NAME)>
<input name="Title" type="text" disabled="true" value="#Activity.Title#" size="65" readonly="true">
<cfelse>
</cfif>
</td>
</tr>
<tr valign="top">
<td>
<em class="required">*</em>Quarter<br>
<cfset Lookup = "Quarter">
<cfset Header = "-select-">
<cfinclude template="uspGetLookup.cfm">
<select name="QuarterID">
<cfloop query="Quarter">
<option value="#Quarter.QuarterID#"
<cfif isDefined("FORM.QuarterID") and FORM.QuarterID eq Quarter.QuarterID>
selected
<cfelseif isDefined("Sess.QuarterID") and Sess.QuarterID eq Quarter.QuarterID>
selected
<cfelse>
</cfif>
>#Quarter.Quarter#</option>
</cfloop>
</select>
</td>
<td>
<em class="required">*</em>
<cfset elementName = "SessionDate">
<cfset elementLabel = "Session date">
<cfinclude template="incHiLiteMissingElement.cfm"><br>
<input
type="text"
name="SessionDate"
size="12"
maxlength="10"
<cfif isDefined("FORM.SessionDate")>
value="#FORM.SessionDate#"
<cfelseif isDefined("FORM.sDT")>
value="#FORM.sDT#"
<cfelseif isDefined("Sess.SessionDateTime")>
value="#DateFormat(Sess.SessionDateTime, "mm/dd/yyyy")#"
<cfelse>
value=""
</cfif>
><br>
<a href="javascript:ShowCalendar('Session','SessionDate')">Select Date</a><!--EZ-D8 Select</a><sup>®</sup-->
</td>
<td nowrap>
<em class="required">*</em>Session time<br>
<select name="Hour">
<option value="">--</option>
<cfloop index="Hr" from="1" to="12" step="1">
<option value="#Hr#"
<cfif isDefined("FORM.Hour") and FORM.Hour eq Hr>
selected
<cfelseif isDefined("Sess.SessionDateTime") and TimeFormat(Sess.SessionDateTime, "h") eq Hr>
selected
</cfif>
>#Hr#</option>
</cfloop>
</select>
<span style="font-size:150%;">:</span>
<select name="Minute">
<cfloop index="Minute" from="0" to="55" step="5">
<option value="#TimeFormat(CreateTime(00, Minute, 00), "mm")#"
<cfif isDefined("FORM.Minute") and TimeFormat(CreateTime(00, Minute, 00), "mm") eq FORM.Minute>
selected
<cfelseif isDefined("Sess.SessionDateTime") and TimeFormat(CreateTime(00, Minute, 00), "mm") eq Minute(Sess.SessionDateTime)>
selected
<cfelse>
</cfif>
>#TimeFormat(CreateTime(00, Minute, 00), "mm")#</option>
</cfloop>
</select>
<select name="Marker">
<option value="">--</option>
<cfif isDefined("FORM.Marker")>
<option value="AM" <cfif FORM.Marker eq "AM">selected</cfif>>A.M.</option>
<option value="PM" <cfif FORM.Marker eq "PM">selected</cfif>>P.M.</option>
<cfelseif isDefined("Sess.SessionDateTime")>
<option value="AM" <cfif Hour(Sess.SessionDateTime) lt 12>selected</cfif>>A.M.</option>
<option value="PM" <cfif Hour(Sess.SessionDateTime) gt 11>selected</cfif>>P.M.</option>
<cfelse>
<option value="AM">A.M.</option>
<option value="PM">P.M.</option>
</cfif>
</select>
</td>
<td>
<cfset elementName = "Duration">
<cfset elementLabel = "Duration">
<cfinclude template="incHiLiteMissingElement.cfm"><br>
<input
name="Duration"
type="text"
style="text-align:right;" size="5" maxlength="6"
<cfif isDefined("FORM.Duration")>
value="#FORM.Duration#"
<cfelseif isDefined("Sess.Duration")>
value="#Sess.Duration#"
<cfelse>
value=""
</cfif>
> min.
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td>
<cfset elementName = "NumAttendees">
<cfset elementLabel = "Number of students">
<cfinclude template="incHiLiteMissingElement.cfm">
</td>
<td>
<input
name="NumAttendees"
type="text"
size="5"
maxlength="6"
<cfif isDefined("FORM.NumAttendees")>
value="#FORM.NumAttendees#"
<cfelseif isDefined("Sess.NumAttendees")>
value="#Sess.NumAttendees#"
<cfelse>
value=""
</cfif>
>
</td>
<td> </td>
</tr>
<!---tr valign="top">
<td>
<cfset elementName = "NumEnrolled">
<cfset elementLabel = "Number of students enrolled">
<cfinclude template="incHiLiteMissingElement.cfm">
</td>
<td>
<input
name="NumEnrolled"
type="text"
size="5"
maxlength="6"
<cfif isDefined("FORM.NumEnrolled")>
value="#FORM.NumEnrolled#"
<cfelseif isDefined("Sess.NumEnrolled")>
value="#Sess.NumEnrolled#"
<cfelse>
value=""
</cfif>
>
</td>
<td> </td>
</tr--->
<tr valign="top">
<td colspan="2">
<!--em class="required">*</em-->Group name<br>
<input
name="GroupName"
type="text"
size="50"
maxlength="255"
<cfif isDefined("FORM.GroupName")>
value="#FORM.GroupName#"
<cfelseif isDefined("Sess.GroupName")>
value="#Sess.GroupName#"
<cfelse>
value=""
</cfif>
>
</td>
<td>
Affiliation<br>
<cfset Lookup = "Affiliation">
<cfset Header = "-select-">
<cfinclude template="uspGetLookup.cfm">
<select name="AffiliationID">
<cfloop query="Affiliation">
<option value="#Affiliation.AffiliationID#"
<cfif isDefined("FORM.AffiliationID") and FORM.AffiliationID eq Affiliation.AffiliationID>
selected
<cfelseif isDefined("Sess.AffiliationID") and Sess.AffiliationID eq Affiliation.AffiliationID>
selected
<cfelse>
</cfif>
>#Affiliation.Affiliation#</option>
</cfloop>
</select>
</td>
</tr>
<tr valign="top">
<td colspan="2">
UCLA department<br>
<cfset Lookup = "Department">
<cfset Header = "-select-">
<cfinclude template="uspGetLookup.cfm">
<select name="DepartmentID">
<cfloop query="Department">
<option value="#Department.DepartmentID#"
<cfif isDefined("FORM.DepartmentID") and FORM.DepartmentID eq Department.DepartmentID>
selected
<cfelseif isDefined("Sess.DepartmentID") and Sess.DepartmentID eq Department.DepartmentID>
selected
<cfelse>
</cfif>
>#Department.Department#</option>
</cfloop>
</select>
</td>
<td>
Learner category<br>
<cfset Lookup = "LearnerCategory">
<cfset Header = "-select-">
<cfinclude template="uspGetLookup.cfm">
<select name="LearnerCategoryID">
<cfloop query="LearnerCategory">
<option value="#LearnerCategory.LearnerCategoryID#"
<cfif isDefined("FORM.LearnerCategoryID") and FORM.LearnerCategoryID eq LearnerCategory.LearnerCategoryID>
selected
<cfelseif isDefined("Sess.LearnerCategoryID") and Sess.LearnerCategoryID eq LearnerCategory.LearnerCategoryID>
selected
</cfif>
>#LearnerCategory.LearnerCategory#</option>
</cfloop>
</select>
</td>
</tr>
<tr valign="top">
<td colspan="3">
Session Comments<br>
<textarea name="Comments" cols="48" rows="4"><cfif isDefined("FORM.Comments")>#FORM.Comments#<cfelseif isDefined("Sess.Comments")>#Sess.Comments#<cfelse></cfif></textarea>
</td>
</tr>
<tr valign="top">
<td colspan="3">
<cfset elementName = "PrepTime">
<cfset elementLabel = "Preparation time">
<cfinclude template="incHiLiteMissingElement.cfm"><br>
<input
name="PrepTime"
type="text"
style="text-align:right;"
size="5"
maxlength="6"
<cfif isDefined("FORM.PrepTime")>
value="#FORM.PrepTime#"
<cfelseif isDefined("Sess.PrepTime")>
value="#Sess.PrepTime#"
<cfelse>
value=""
</cfif>
> min.
</td>
</tr>
<tr valign="top">
<td colspan="3">
Preparation time comments<br>
<textarea name="PrepComment" cols="48" rows="4"><cfif isDefined("FORM.PrepComment")>#FORM.PrepComment#<cfelseif isDefined("Sess.PrepComment")>#Sess.PrepComment#<cfelse></cfif></textarea>
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<input name="caller" type="hidden" value="formSession">
<cfif Find("updateSession", SCRIPT_NAME)>
<input name="SessID" type="hidden" value="#Sess.SessionID#">
<cfelseif Find("addSession", SCRIPT_NAME)>
<input name="ActID" type="hidden" value="#ActID#">
<cfelse>
</cfif>
<input name="reqElements" type="hidden" value="QuarterID,a quarter;SessionDate,a sesssion date;Hour,a session time;Marker,AM or PM for the session time"> <!--;GroupName, a group name"-->
<input name="Submit" type="submit" class="mainControl" style="width:100px;" value="OK" onclick="JavaScript:setVersion(Session, 'main');">
</td>
<td>
<input name="Submit" type="submit" class="mainControl" value="Cancel" onclick="JavaScript:setVersion(Session, 'alt');">
<!---cfif Find("addSession", SCRIPT_NAME)>
<form action="activity.cfm?ActID=#ActID#" method="post">
<cfelseif Find("updateSession", SCRIPT_NAME)>
<form action="session.cfm?SessID=#Sess.SessionID#" method="post">
<cfelse>
<form action="sessions.cfm?LibID=#SESSION.LibID#" method="post">
</cfif>
<input type="submit" class="mainControl" value="Cancel">
</form--->
</td>
</tr>
</table>
</div>
</form>
</cfoutput>
</cfif>