clock.htc
44.3 KB
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
<!-- ---------------------------------------------------------------------
//
// Copyright 1999 Microsoft Corporation. All Rights Reserved.
//
// File: clock.htc
//
// Description: The calendar behavior provides an easy, declarative way
// to add a standard calendar control to web pages and html
// based applications. It provides a variety of properties
// to customize the look and feel along with a strong set
// events and functionality.
//
//-------------------------------------------------------------------- -->
<script language="javascript">
//------------------------------------------------------------------------
// Attach to element events
//------------------------------------------------------------------------
element.attachEvent("onselectstart", fnOnSelectStart)
element.attachEvent("onclick", fnOnClick)
element.attachEvent("onpropertychange", fnOnPropertyChange)
element.attachEvent("onreadystatechange", fnOnReadyStateChange)
//------------------------------------------------------------------------
// Create the arrays of days & months for different languages
//------------------------------------------------------------------------
var StyleInfo = null // Style sheet with rules for this calendar
var goStyle = new Object() // A hash of style sheet rules that apply to this calendar
var gbLoading = true // Flag for if the behavior is loading
//modified by zhouquan for linux server time browser TD1696
var gaMinuteCell = new Array() // an array of the table cells for minutes
var goHourSelect = null // The hour select control
var goCurrentMinuteCell = null // The cell for the currently selected minute
var giMinute // minute of the hour (1 to 60)
var giHour // hour of the day (1 to 24)
var giHourLength = 1 // hour length (0,1)
var giMinuteLength = 1 // minute length (0 to 2)
var gbShowTimeSelectors = true // Show time selectors (0,1)
var gsGridCellEffect = 'raised' // Grid cell effect
var gsGridLinesColor = 'black' // Grid line color
var gbShowTitle = true // Show the title (0,1)
var gbShowHorizontalGrid = true // Show the horizontal grid (0,1)
var gbShowVerticalGrid = true // Show the vertical grid (0,1)
var gbValueIsNull = false // There is no value selected (0,1)
var gbReadOnly = false // The user can not interact with the control
// Load the property values defined on the element to replace defaults
fnGetPropertyDefaults()
// Create the style sheets needed for the calendar display
fnCreateStyleSheets()
// Insert the HTML elements needed for the calendar display
fnCreateCalendarHTML()
// Build the hour select control
fnBuildHourSelect()
// Fill in the cells with the days of the month and set style values
fnFillInCells()
// **********************************************************************
// PROPERTY GET/SET FUNCTIONS
// **********************************************************************
//begin add by zhouquan for linux time browser TD1696
function fnGetMinute()
{
return (gbValueIsNull) ? null : giMinute
}
function fnPutMinute(iMinute)
{
if (gbLoading) return // return if the behavior is loading
iMinute = parseInt(iMinute)
if (isNaN(iMinute)) throw 450
fnSetTime(iMinute, giHour)
}
//--------------------------------------------------------------------------
function fnGetHour()
{
return (gbValueIsNull) ? null : giHour
}
function fnPutHour(iHour)
{
if (gbLoading) return // return if the behavior is loading
iHour = parseInt(iHour)
if (isNaN(iHour)) throw 450
fnSetTime(giMinute, iHour)
}
//------------------------------------------------------------------------
function fnGetHourLength()
{
if (giHourLength == 0) return "short"
if (giHourLength == 1) return "long"
}
function fnPutHourLength(sLength)
{
if (gbLoading) return // return if the behavior is loading
switch (sLength.toLowerCase())
{
case "short" :
if (giHourLength == 0) return
giHourLength = 0
break;
case "long" :
if (giHourLength == 1) return
giHourLength = 1
break;
default :
throw 450
return
}
fnBuildHourSelect()
}
//------------------------------------------------------------------------
function fnGetMinuteLength()
{
if (giMinuteLength == 0) return "short"
if (giMinuteLength == 1) return "medium"
if (giMinuteLength == 2) return "long"
}
function fnPutMinuteLength(sLength)
{
if (gbLoading) return // return if the behavior is loading
switch (sLength.toLowerCase())
{
case "short" :
if (giMinuteLength == 0) return
giMinuteLength = 0
break;
case "medium" :
if (giMinuteLength == 1) return
giMinuteLength = 1
break;
case "long" :
if (giMinuteLength == 2) return
giMinuteLength = 2
break;
default :
throw 450
return
}
// Used to force a table resize if needed
goStyle['MinuteSelected'].borderStyle = 'solid'
}
//------------------------------------------------------------------------
function fnGetGridCellEffect()
{
return gsGridCellEffect
}
function fnPutGridCellEffect(sEffect)
{
if (gbLoading) return // return if the behavior is loading
switch (sEffect.toLowerCase())
{
case "raised" :
if (gsGridCellEffect == 'raised') return
gsGridCellEffect = 'raised'
fnUptimeGridColors()
break
case "flat" :
if (gsGridCellEffect == 'flat') return
gsGridCellEffect = 'flat'
fnUptimeGridColors()
break
case "sunken" :
if (gsGridCellEffect == 'sunken') return
gsGridCellEffect = 'sunken'
fnUptimeGridColors()
break
default :
throw 450
}
}
//------------------------------------------------------------------------
function fnGetGridLinesColor()
{
return gsGridLinesColor
}
function fnPutGridLinesColor(sGridLinesColor)
{
if (gbLoading) return // return if the behavior is loading
gsGridLinesColor = sGridLinesColor
fnUptimeGridColors()
}
//------------------------------------------------------------------------
function fnGetShowVerticalGrid()
{
return gbShowVerticalGrid
}
function fnPutShowVerticalGrid(bShowVerticalGrid)
{
if (gbLoading) return // return if the behavior is loading
if ((bShowVerticalGrid) != gbShowVerticalGrid)
{
gbShowVerticalGrid = (bShowVerticalGrid) ? true : false
fnFireOnPropertyChange("propertyName", "showVerticalGrid")
fnUptimeGridColors()
}
}
//------------------------------------------------------------------------
function fnGetShowHorizontalGrid()
{
return gbShowHorizontalGrid
}
function fnPutShowHorizontalGrid(bShowHorizontalGrid)
{
if (gbLoading) return // return if the behavior is loading
if ((bShowHorizontalGrid) != gbShowHorizontalGrid)
{
gbShowHorizontalGrid = (bShowHorizontalGrid) ? true : false
fnFireOnPropertyChange("propertyName", "showHorizontalGrid")
fnUptimeGridColors()
}
}
//------------------------------------------------------------------------
function fnGetShowTimeSelectors()
{
return gbShowTimeSelectors
}
function fnPutShowTimeSelectors(bShowTimeSelectors)
{
if (gbLoading) return // return if the behavior is loading
gbShowTimeSelectors = (bShowTimeSelectors) ? true : false
element.children[0].rows[0].cells[1].style.display = (gbShowTimeSelectors) ? '' : 'none'
element.children[0].rows[0].style.display = (gbShowTimeSelectors || gbShowTitle) ? '' : 'none'
}
//------------------------------------------------------------------------
function fnGetShowMinutes()
{
return gbShowMinutes
}
function fnPutShowMinutes(bShowMinutes)
{
if (gbLoading) return // return if the behavior is loading
gbShowMinutes = (bShowMinutes) ? true : false
goMinuteTitleRow.style.display = (gbShowMinutes) ? '' : 'none'
}
//------------------------------------------------------------------------
function fnGetValue()
{
var sValue
if (gbValueIsNull) return null
sValue = ((giMinute < 10) ? '0' + giMinute : giMinute) + '/' +
((giHour < 10) ? '0' + giHour : giHour)
return sValue
}
function fnPutValue(sValue)
{
if (gbLoading) return // return if the behavior is loading
var aValue = sValue.split('/')
// ensure valid valuse for hour, minute, and year
aValue[0]++ ; aValue[0]-- ; aValue[1]++ ; aValue[1]-- ;
if ( isNaN(aValue[0]) || isNaN(aValue[1]) ) throw 450
fnSetTime(aValue[0], aValue[1])
}
//------------------------------------------------------------------------
function fnHourSelectOnChange()
{
iHour = goHourSelect.selectedIndex
fnSetTime(giMinute, iHour)
}
//------------------------------------------------------------------------
function fnSetTime(iMinute, iHour)
{
var bValueChange = false
if (gbValueIsNull)
{
gbValueIsNull = false
fnFireOnPropertyChange("propertyName", "valueIsNull")
}
if (iHour < 0) iHour = 0
if (iHour > 23) iHour = 23
if (iMinute < 0) iMinute = 0
if (iMinute > 59) iMinute = 59
if ((giMinute == iMinute) && (giHour == iHour))
return
else
bValueChange = true
if (giMinute != iMinute)
{
giMinute = iMinute
fnFireOnPropertyChange("propertyName", "minute")
}
if (giHour != iHour)
{
giHour = iHour
fnFireOnPropertyChange("propertyName", "hour")
fnUptimeHourSelect()
}
// fnUptimeTitle()
fnFillInCells()
if (bValueChange) fnFireOnPropertyChange("propertyName", "value")
}
//------------------------------------------------------------------------
function fnUptimeHourSelect()
{
goHourSelect.options[ giHour ].selected = true
}
//------------------------------------------------------------------------
//end zhouquan add
//------------------------------------------------------------------------
//
// Function: fnGetGridCellEffect / fnPutGridCellEffect
//
// Synopsis: The gridCellEffect property is used to modify the 3D effect
// in the calendar grid (excluding day titles). It can take
// values of 'raised', 'flat', or 'sunken'. Other values will
// cause an exception.
//
// Arguments: The put method requires a value of 'raised', 'flat', or
// 'sunken'.
//
// Returns: The get method will return a value of 'raised', 'flat', or
// 'sunken'.
//
// Notes: none
//
//------------------------------------------------------------------------
function fnGetGridCellEffect()
{
return gsGridCellEffect
}
function fnPutGridCellEffect(sEffect)
{
if (gbLoading) return // return if the behavior is loading
switch (sEffect.toLowerCase())
{
case "raised" :
if (gsGridCellEffect == 'raised') return
gsGridCellEffect = 'raised'
fnUpdateGridColors()
break
case "flat" :
if (gsGridCellEffect == 'flat') return
gsGridCellEffect = 'flat'
fnUpdateGridColors()
break
case "sunken" :
if (gsGridCellEffect == 'sunken') return
gsGridCellEffect = 'sunken'
fnUpdateGridColors()
break
default :
throw 450
}
}
//------------------------------------------------------------------------
//
// Function: fnGetGridLinesColor / fnPutGridLinesColor
//
// Synopsis: The gridLinesColor property is used to change the color of
// the calendar grid when the gridCellEffect property is set
// to 'flat'. It can be any valid HTML color value.
//
// Arguments: The put method requires a HTML color value
//
// Returns: The get method will return a HTML color value
//
// Notes: No error checking is performed. Invalid values may result
// in unexpected rendering.
//
//------------------------------------------------------------------------
function fnGetGridLinesColor()
{
return gsGridLinesColor
}
function fnPutGridLinesColor(sGridLinesColor)
{
if (gbLoading) return // return if the behavior is loading
gsGridLinesColor = sGridLinesColor
fnUpdateGridColors()
}
//------------------------------------------------------------------------
//
// Function: fnGetShowVerticalGrid / fnPutShowVerticalGrid
//
// Synopsis: The showVerticalGrid property is used to toggle the
// visibility of vertical lines in the calendar grid.
//
// Arguments: The put method requires true or false value for visibility
//
// Returns: The get method will return a true or false value
//
// Notes: none
//
//------------------------------------------------------------------------
function fnGetShowVerticalGrid()
{
return gbShowVerticalGrid
}
function fnPutShowVerticalGrid(bShowVerticalGrid)
{
if (gbLoading) return // return if the behavior is loading
if ((bShowVerticalGrid) != gbShowVerticalGrid)
{
gbShowVerticalGrid = (bShowVerticalGrid) ? true : false
fnFireOnPropertyChange("propertyName", "showVerticalGrid")
fnUpdateGridColors()
}
}
//------------------------------------------------------------------------
//
// Function: fnGetShowHorizontalGrid / fnPutShowHorizontalGrid
//
// Synopsis: The showHorizontalGrid property is used to toggle the
// visibility of horizontal lines in the calendar grid.
//
// Arguments: The put method requires true or false value for visibility
//
// Returns: The get method will return a true or false value
//
// Notes: none
//
//------------------------------------------------------------------------
function fnGetShowHorizontalGrid()
{
return gbShowHorizontalGrid
}
function fnPutShowHorizontalGrid(bShowHorizontalGrid)
{
if (gbLoading) return // return if the behavior is loading
if ((bShowHorizontalGrid) != gbShowHorizontalGrid)
{
gbShowHorizontalGrid = (bShowHorizontalGrid) ? true : false
fnFireOnPropertyChange("propertyName", "showHorizontalGrid")
fnUpdateGridColors()
}
}
//------------------------------------------------------------------------
//
// Function: fnGetReadOnly / fnPutReadOnly
//
// Synopsis: The readOnly property can be set to true or false to
// disable user date selection by clicking on days or through
// the select controls
//
// Arguments: The put method requires a true/false value
//
// Returns: The get method will return true or false
//
// Notes: none
//
//------------------------------------------------------------------------
function fnGetReadOnly()
{
return (gbReadOnly) ? true : false
}
function fnPutReadOnly(bReadOnly)
{
if (gbLoading) return // return if the behavior is loading
if ((bReadOnly) != gbReadOnly)
{
gbReadOnly = (bReadOnly) ? true : false
fnFireOnPropertyChange("propertyName", "readOnly")
}
element.children[0].rows[0].cells[1].children[0].children[0].disabled = gbReadOnly
element.children[0].rows[0].cells[1].children[0].children[1].disabled = gbReadOnly
}
// **********************************************************************
// CALENDAR INITIALIZATION FUNCTIONS
// **********************************************************************
//------------------------------------------------------------------------
//
// Function: fnCreateCalendarHTML
//
// Synopsis: This function adds the HTML code to the main document that
// is required to display the calendar. It contains nested
// tables and all style information is inherited from the
// style sheet properties.
//
// Arguments: none
//
// Returns: none
//
// Notes: none
//
//------------------------------------------------------------------------
function fnCreateCalendarHTML()
{
var row, cell
element.innerHTML =
'<table border=0 class=WholeCalendar_' + uniqueID + '> ' +
' <tr> ' +
' <td class=Title_' + uniqueID + '>Сʱ</td> ' +
' <td class=TimeControls_' + uniqueID + '> ' +
' <nobr> <select size=10 ></select> ' +
' </nobr> </td> ' +
' </tr> ' +
' <tr> <td colspan=2> ' +
' <table class=CalTable_' + uniqueID + ' cellspacing=0 border=0> ' +
' <tr><td></td><td></td><td></td><td></td><td></td><td></td></tr>' +
' <tr><td></td><td></td><td></td><td></td><td></td><td></td></tr>' +
' <tr><td></td><td></td><td></td><td></td><td></td><td></td></tr>' +
' <tr><td></td><td></td><td></td><td></td><td></td><td></td></tr>' +
' <tr><td></td><td></td><td></td><td></td><td></td><td></td></tr>' +
' <tr><td></td><td></td><td></td><td></td><td></td><td></td></tr>' +
' <tr><td></td><td></td><td></td><td></td><td></td><td></td></tr>' +
' <tr><td></td><td></td><td></td><td></td><td></td><td></td></tr>' +
' <tr><td></td><td></td><td></td><td></td><td></td><td></td></tr>' +
' <tr><td></td><td></td><td></td><td></td><td></td><td></td></tr>' +
' <tr><td></td><td></td><td></td><td></td><td></td><td></td></tr>' +
' </table> ' +
' </td> ' +
' </tr> ' +
'</table> ';
goHourSelect = element.children[0].rows[0].cells[1].children[0].children[0]
for (row=1; row < 11; row++)
for (cell=0; cell < 6; cell++)
gaMinuteCell[((row-1)*6) + cell] = element.children[0].rows[1].cells[0].children[0].rows[row].cells[cell]
}
//------------------------------------------------------------------------
//
// Function: fnCreateStyleSheets
//
// Synopsis: The calendar uses a style sheet to control the rendering
// of the different calendar elements. This function creates
// the style sheet in the main document using a unique name.
//
// Arguments: none
//
// Returns:
//
// Notes:
//
//------------------------------------------------------------------------
function fnCreateStyleSheets()
{
var StyleInfo
if (! element.document.body.BehaviorStyleSheet)
{
element.document.body.BehaviorStyleSheet = element.document.createStyleSheet()
}
StyleInfo = element.document.body.BehaviorStyleSheet
StyleInfo.addRule( '.WholeCalendar_' + uniqueID,
'background-color : lightgrey ;'+
'border : 1px solid black ;'+
'cursor : default ;'+
'width : 100% ;'+
'height : 100% ;'
)
goStyle['WholeCalendar'] = StyleInfo.rules[StyleInfo.rules.length - 1].style
StyleInfo.addRule( '.Title_' + uniqueID,
'color : #00009F ;'+ // cal--title-color
'font-family : Arial ;'+ // cal--title-font-family
'font-size : 10pt ;'+ // cal--title-font-size
'font-weight : bold ;'+ // cal--title-font-weight
'text-align : center ;'+ // cal--title-text-align
'height : 1 ;'+
'width : 50% ;'+
'background-color : lightgrey;'
)
goStyle['Title'] = StyleInfo.rules[StyleInfo.rules.length - 1].style
fnLoadCSSDefault('cal--title-background-color', 'calTitleBackgroundColor', goStyle['Title'], 'backgroundColor')
fnLoadCSSDefault('cal--title-color', 'calTitleColor', goStyle['Title'], 'color')
fnLoadCSSDefault('cal--title-font-family', 'calTitleFontFamily', goStyle['Title'], 'fontFamily')
fnLoadCSSDefault('cal--title-font-size', 'calTitleFontSize', goStyle['Title'], 'fontSize')
fnLoadCSSDefault('cal--title-font-weight', 'calTitleFontWeight', goStyle['Title'], 'fontWeight')
fnLoadCSSDefault('cal--title-text-align', 'calTitleTextAlign', goStyle['Title'], 'textAlign')
StyleInfo.addRule( '.TimeControls_' + uniqueID,
'text-align : right ;'
)
goStyle['TimeControls'] = StyleInfo.rules[StyleInfo.rules.length - 1].style
StyleInfo.addRule( '.CalTable_' + uniqueID,
'border : 1 solid black ;'+
'width : 100% ;'+
'height : 100% ;'
)
goStyle['CalTable'] = StyleInfo.rules[StyleInfo.rules.length - 1].style
StyleInfo.addRule( '.MinuteTitle_' + uniqueID,
'background-color : lightgrey ;'+ // minuteTitle-background-color
'color : black ;'+ // minuteTitle-color
'font-family : Arial ;'+ // minuteTitle-font-family
'font-size : 8pt ;'+ // minuteTitle-font-size
'font-weight : bold ;'+ // minuteTitle-font-weight
'text-align : center ;'+ // minuteTitle-text-align
'border-width : 1px ;'+
'border-style : solid ;'+
'border-left-color : white ;'+
'border-top-color : white ;'+
'border-right-color : black ;'+
'border-bottom-color : black ;'+
'width : 16% ;'+
'height : 1 ;'
)
goStyle['MinuteTitle'] = StyleInfo.rules[StyleInfo.rules.length - 1].style
fnLoadCSSDefault('cal--minuteTitle-background-color', 'calMinuteTitleBackgroundColor', goStyle['MinuteTitle'], 'backgroundColor')
fnLoadCSSDefault('cal--minuteTitle-color', 'calMinuteTitleColor', goStyle['MinuteTitle'], 'color')
fnLoadCSSDefault('cal--minuteTitle-font-family', 'calMinuteTitleFontFamily', goStyle['MinuteTitle'], 'fontFamily')
fnLoadCSSDefault('cal--minuteTitle-font-size', 'calMinuteTitleFontSize', goStyle['MinuteTitle'], 'fontSize')
fnLoadCSSDefault('cal--minuteTitle-font-weight', 'calMinuteTitleFontWeight', goStyle['MinuteTitle'], 'fontWeight')
fnLoadCSSDefault('cal--minuteTitle-text-align', 'calMinuteTitleTextAlign', goStyle['MinuteTitle'], 'textAlign')
StyleInfo.addRule( '.OffMinute_' + uniqueID,
'background-color : lightgrey ;'+ // cal--offHour-background-color
'color : #7F7F7F ;'+ // cal--offHour-color
'font-family : Arial ;'+ // cal--offHour-font-family
'font-size : 8pt ;'+ // cal--offHour-font-size
'font-weight : normal ;'+ // cal--offHour-font-weight
'text-align : right ;'+ // cal--offHour-text-align
'vertical-align : text-top ;'+ // cal--offHour-vertical-align
'border-width : 1px ;'+
'border-style : solid ;'+
'border-left-color : white ;'+
'border-top-color : white ;'+
'border-right-color : black ;'+
'border-bottom-color : black ;'+
'width : 16% ;'+
'cursor : hand ;'
)
goStyle['OffMinute'] = StyleInfo.rules[StyleInfo.rules.length - 1].style
fnLoadCSSDefault('cal--offHour-background-color', 'calOffHourBackgroundColor', goStyle['OffMinute'], 'backgroundColor')
fnLoadCSSDefault('cal--offHour-color', 'calOffHourColor', goStyle['OffMinute'], 'color')
fnLoadCSSDefault('cal--offHour-font-family', 'calOffHourFontFamily', goStyle['OffMinute'], 'fontFamily')
fnLoadCSSDefault('cal--offHour-font-size', 'calOffHourFontSize', goStyle['OffMinute'], 'fontSize')
fnLoadCSSDefault('cal--offHour-font-weight', 'calOffHourFontWeight', goStyle['OffMinute'], 'fontWeight')
fnLoadCSSDefault('cal--offHour-text-align', 'calOffHourTextAlign', goStyle['OffMinute'], 'textAlign')
fnLoadCSSDefault('cal--offHour-vertical-align', 'calOffHourVerticalAlign', goStyle['OffMinute'], 'verticalAlign')
StyleInfo.addRule( '.Minute_' + uniqueID,
'background-color : lightgrey ;'+ // cal--currentHour-background-color
'color : #00009F ;'+ // cal--currentHour-color
'font-family : Arial ;'+ // cal--currentHour-font-family
'font-size : 8pt ;'+ // cal--currentHour-font-size
'font-weight : normal ;'+ // cal--currentHour-font-weight
'text-align : right ;'+ // cal--currentHour-text-align
'vertical-align : text-top ;'+ // cal--currentHour-vertical-align
'border-width : 1px ;'+
'border-style : solid ;'+
'border-left-color : white ;'+
'border-top-color : white ;'+
'border-right-color : black ;'+
'border-bottom-color : black ;'+
'width : 16% ;'+
'cursor : hand ;'
)
goStyle['Minute'] = StyleInfo.rules[StyleInfo.rules.length - 1].style
fnLoadCSSDefault('cal--currentHour-background-color', 'calCurrentHourBackgroundColor', goStyle['Minute'], 'backgroundColor')
fnLoadCSSDefault('cal--currentHour-color', 'calCurrentHourColor', goStyle['Minute'], 'color')
fnLoadCSSDefault('cal--currentHour-font-family', 'calCurrentHourFontFamily', goStyle['Minute'], 'fontFamily')
fnLoadCSSDefault('cal--currentHour-font-size', 'calCurrentHourFontSize', goStyle['Minute'], 'fontSize')
fnLoadCSSDefault('cal--currentHour-font-weight', 'calCurrentHourFontWeight', goStyle['Minute'], 'fontWeight')
fnLoadCSSDefault('cal--currentHour-text-align', 'calCurrentHourTextAlign', goStyle['Minute'], 'textAlign')
fnLoadCSSDefault('cal--currentHour-vertical-align', 'calCurrentHourVerticalAlign', goStyle['Minute'], 'verticalAlign')
StyleInfo.addRule( '.MinuteSelected_' + uniqueID,
'background-color : #7F7F7F ;'+ // cal--selectedMinute-background-color
'color : yellow ;'+ // cal--selectedMinute-color
'font-family : Arial ;'+ // cal--selectedMinute-font-family
'font-size : 8pt ;'+ // cal--selectedMinute-font-size
'font-weight : normal ;'+ // cal--selectedMinute-font-weight
'text-align : right ;'+ // cal--selectedHour-text-align
'vertical-align : text-top ;'+ // cal--selectedHour-vertical-align
'border-width : 1px ;'+
'border-style : solid ;'+
'border-left-color : black ;'+
'border-top-color : black ;'+
'border-right-color : #BFBFBF ;'+
'border-bottom-color : #BFBFBF ;'+
'width : 16% ;'+
'cursor : hand ;'
)
goStyle['MinuteSelected'] = StyleInfo.rules[StyleInfo.rules.length - 1].style
fnLoadCSSDefault('cal--selectedMinute-background-color', 'calSelectedMinuteBackgroundColor', goStyle['MinuteSelected'], 'backgroundColor')
fnLoadCSSDefault('cal--selectedMinute-color', 'calSelectedMinuteColor', goStyle['MinuteSelected'], 'color')
fnLoadCSSDefault('cal--selectedMinute-font-family', 'calSelectedMinuteFontFamily', goStyle['MinuteSelected'], 'fontFamily')
fnLoadCSSDefault('cal--selectedMinute-font-size', 'calSelectedMinuteFontSize', goStyle['MinuteSelected'], 'fontSize')
fnLoadCSSDefault('cal--selectedMinute-font-weight', 'calSelectedMinuteFontWeight', goStyle['MinuteSelected'], 'fontWeight')
fnLoadCSSDefault('cal--selectedMinute-text-align', 'calSelectedMinuteTextAlign', goStyle['MinuteSelected'], 'textAlign')
fnLoadCSSDefault('cal--selectedMinute-vertical-align', 'calSelectedMinuteVerticalAlign', goStyle['MinuteSelected'], 'verticalAlign')
}
//------------------------------------------------------------------------
//
// Function: fnLoadCSSDefault
//
// Synopsis: This helper function checks to see if a CSS property
// extension was used to specify a custom style for the
// calendar. If so, the style style object.
//
// Arguments: sCSSProp The CSS property extension used by the
// page author
// sScriptProp The scriptable property name to add to the
// style Name of the style rule
// sStyleRuleProp Name of the CSS property on the style rule
//
// Returns: none
//
// Notes: none
//
//------------------------------------------------------------------------
function fnLoadCSSDefault(sCSSProp, sScriptProp, oStyleRule, sStyleRuleProp)
{
if (element.currentStyle[sCSSProp])
{
oStyleRule[sStyleRuleProp] = element.currentStyle[sCSSProp]
}
element.style[sScriptProp] = oStyleRule[sStyleRuleProp]
}
//------------------------------------------------------------------------
//
// Function: fnGetPropertyDefaults
//
// Synopsis: When the for the properties.
// If so, error checking is performed and the state of the
// calendar is updated.
//
// Arguments: none
//
// Returns: none
//
// Notes: none
//
//------------------------------------------------------------------------
function fnGetPropertyDefaults()
{
var x
var oTime = new Date()
giMinute = oTime.getMinutes()
giHour = oTime.getHours()
// The JavaScript Time.getYear function returns a 2 digit time representation
// for times in the 1900's and a 4 digit time for 2000 and beyond.
if (element.hour)
{
if (! isNaN(parseInt(element.hour))) giHour = parseInt(element.hour)
if (giHour < 1) giHour = 1
if (giHour > 24) giHour = 24
}
if (element.minute)
{
if (! isNaN(parseInt(element.minute))) giMinute = parseInt(element.minute)
if (giMinute < 1) giMinute = 1
if (giMinute > 60) giMinute = 60
}
if (element.hourLength)
{
switch (element.hourLength.toLowerCase())
{
case 'short' :
giHourLength = 0
break
case 'long' :
giHourLength = 1
break
}
}
if (element.minuteLength)
{
switch (element.minuteLength.toLowerCase())
{
case 'short' :
giMinuteLength = 0
break
case 'medium' :
giMinuteLength = 1
break
case 'long' :
giMinuteLength = 1
break
}
}
if (element.gridCellEffect)
{
switch (element.gridCellEffect.toLowerCase())
{
case 'raised' :
giGridCellEffect = 'raised'
break
case 'flat' :
giGridCellEffect = 'flat'
break
case 'sunken' :
giGridCellEffect = 'sunken'
break
}
}
if (element.gridLinesColor)
gsGridLinesColor = element.gridLinesColor
if (element.showTimeSelectors)
gbShowTimeSelectors = (element.showTimeSelectors) ? true : false
if (element.showMinutes)
gbShowMinutes = (element.showMinutes) ? true : false
if (element.showTitle)
gbShowTitle = (element.showTitle) ? true : false
if (element.showHorizontalGrid)
gbShowHorizontalGrid = (element.showHorizontalGrid) ? true : false
if (element.showVerticalGrid)
gbShowVerticalGrid = (element.showVerticalGrid) ? true : false
if (element.valueIsNull)
gbValueIsNull = (element.valueIsNull) ? true : false
if (element.name)
gsName = element.name
if (element.readOnly)
gbReadOnly = (element.readOnly) ? true : false
}
//------------------------------------------------------------------------
//
// Function: fnBuildHourSelect
//
// Synopsis: When the calendar is created, this function inserts the
// hour values into the select control and selects the
// current hour.
//
// Arguments: none
//
// Returns: none
//
// Notes: none
//
//------------------------------------------------------------------------
function fnBuildHourSelect()
{
var newHourSelect
newHourSelect = element.document.createElement("SELECT")
goHourSelect.parentElement.replaceChild(newHourSelect, goHourSelect)
goHourSelect = newHourSelect
for (i=0 ; i < 24; i++)
{
e = element.document.createElement("OPTION")
e.text = i
goHourSelect.options.add(e)
}
goHourSelect.options[ giHour ].selected = true
goHourSelect.attachEvent("onchange", fnHourSelectOnChange)
}
//------------------------------------------------------------------------
//
// Function: fnFillInCells
//
// Synopsis: This method works through the table and sets the day and
// style needed.
//
// Arguments: none
//
// Returns: none
//
// Notes: none
//
//------------------------------------------------------------------------
function fnFillInCells()
{
var iMinuteCell = 0
for(i=0;i<60;i++,iMinuteCell++)
{
gaMinuteCell[iMinuteCell].innerText = i
if (giMinute == i)
{
goCurrentMinuteCell = gaMinuteCell[iMinuteCell]
gaMinuteCell[iMinuteCell].className = 'MinuteSelected_' + uniqueID
}
else
{
if (gaMinuteCell[iMinuteCell].className != 'Minute_' + uniqueID)
gaMinuteCell[iMinuteCell].className = 'Minute_' + uniqueID
}
gaMinuteCell[iMinuteCell].minute = i+1
gaMinuteCell[iMinuteCell].hour = giHour
}
}
// **********************************************************************
// EVENT HANDLERS
// **********************************************************************
//------------------------------------------------------------------------
//
// Function: fnOnClick
//
// Synopsis: When the user clicks on the calendar, change the date if
// needed
//
// Arguments: none
//
// Returns: none
//
// Notes: none
//
//------------------------------------------------------------------------
function fnOnClick()
{
var e = window.event.srcElement
if (e.tagName == "TD")
{
if (gbReadOnly|| (!e.minute) ) return // The calendar is read only
fnSetTime(e.minute-1, e.hour)
}
}
//------------------------------------------------------------------------
//
// Function: fnOnSelectStart
//
// Synopsis: This cancels selection when the user clicks and drags the
// mouse on the calendar. It can still be selected if the
// the SelectStart begins outside this element.
//
// Arguments: none
//
// Returns: none
//
// Notes: none
//
//------------------------------------------------------------------------
function fnOnSelectStart()
{
window.event.returnValue = false
window.event.cancelBubble = true
}
//------------------------------------------------------------------------
//
// Function: fnOnReadyStateChange
//
// Synopsis: When the behavior is completely loaded, set the global
// loading flag to false.
//
// Arguments: none
//
// Returns: none
//
// Notes: To improve load time, we do not want the put methods on
// properties to be called. We also need to keep events from
// getting fired while the behavior is loading.
//
//------------------------------------------------------------------------
function fnOnReadyStateChange()
{
gbLoading = (readyState != "complete")
}
//------------------------------------------------------------------------
//
// Function: fnOnPropertyChange
//
// Synopsis: When a property changes on the element, this function will
// check it to see if part of the calendar needs to be changed
// as a result.
//
// Arguments: none
//
// Returns: none
//
// Notes: This is currently only checking extended style
// properties to alter the calendar style sheet rules.
//
//------------------------------------------------------------------------
function fnOnPropertyChange()
{
if (window.event.propertyName.substring(0, 5) == 'style')
{
switch (window.event.propertyName)
{
case 'style.calTitleBackgroundColor' :
goStyle['WholeCalendar'].backgroundColor = style.calTitleBackgroundColor
goStyle['Title'].backgroundColor = style.calTitleBackgroundColor
break
case 'style.calTitleColor' :
goStyle['Title'].color = style.calTitleColor
break
case 'style.calTitleFontFamily' :
goStyle['Title'].fontFamily = style.calTitleFontFamily
break
case 'style.calTitleFontSize' :
goStyle['Title'].fontSize = style.calTitleFontSize
break
case 'style.calTitleFontWeight' :
goStyle['Title'].fontWeight = style.calTitleFontWeight
break
case 'style.calTitleTextAlign' :
goStyle['Title'].textAlign = style.calTitleTextAlign
break
case 'style.calMinuteTitleBackgroundColor' :
goStyle['MinuteTitle'].backgroundColor = style.calMinuteTitleBackgroundColor
break
case 'style.calMinuteTitleColor' :
goStyle['MinuteTitle'].color = style.calMinuteTitleColor
break
case 'style.calMinuteTitleFontFamily' :
goStyle['MinuteTitle'].fontFamily = style.calMinuteTitleFontFamily
break
case 'style.calMinuteTitleFontSize' :
goStyle['MinuteTitle'].fontSize = style.calMinuteTitleFontSize
break
case 'style.calMinuteTitleFontWeight' :
goStyle['MinuteTitle'].fontWeight = style.calMinuteTitleFontWeight
break
case 'style.calMinuteTitleTextAlign' :
goStyle['MinuteTitle'].textAlign = style.calMinuteTitleTextAlign
break
case 'style.calOffHourBackgroundColor' :
goStyle['OffMinute'].backgroundColor = style.calOffHourBackgroundColor
break
case 'style.calOffHourColor' :
goStyle['OffMinute'].color = style.calOffHourColor
break
case 'style.calOffHourFontFamily' :
goStyle['OffMinute'].fontFamily = style.calOffHourFontFamily
break
case 'style.calOffHourFontSize' :
goStyle['OffMinute'].fontSize = style.calOffHourFontSize
break
case 'style.calOffHourFontWeight' :
goStyle['OffMinute'].fontWeight = style.calOffHourFontWeight
break
case 'style.calOffHourTextAlign' :
goStyle['OffMinute'].textAlign = style.calOffHourTextAlign
break
case 'style.calOffHourVerticalAlign' :
goStyle['OffMinute'].verticalAlign = style.calOffHourVerticalAlign
break
case 'style.calCurrentHourBackgroundColor' :
goStyle['Minute'].backgroundColor = style.calCurrentHourBackgroundColor
break
case 'style.calCurrentHourColor' :
goStyle['Minute'].color = style.calCurrentHourColor
break
case 'style.calCurrentHourFontFamily' :
goStyle['Minute'].fontFamily = style.calCurrentHourFontFamily
break
case 'style.calCurrentHourFontSize' :
goStyle['Minute'].fontSize = style.calCurrentHourFontSize
break
case 'style.calCurrentHourFontWeight' :
goStyle['Minute'].fontWeight = style.calCurrentHourFontWeight
break
case 'style.calCurrentHourTextAlign' :
goStyle['Minute'].textAlign = style.calCurrentHourTextAlign
break
case 'style.calCurrentHourVerticalAlign' :
goStyle['Minute'].verticalAlign = style.calCurrentHourVerticalAlign
break
case 'style.calSelectedMinuteBackgroundColor' :
goStyle['MinuteSelected'].backgroundColor = style.calSelectedMinuteBackgroundColor
break
case 'style.calSelectedMinuteColor' :
goStyle['MinuteSelected'].color = style.calSelectedMinuteColor
break
case 'style.calSelectedMinuteFontFamily' :
goStyle['MinuteSelected'].fontFamily = style.calSelectedMinuteFontFamily
break
case 'style.calSelectedMinuteFontSize' :
goStyle['MinuteSelected'].fontSize = style.calSelectedMinuteFontSize
break
case 'style.calSelectedMinuteFontWeight' :
goStyle['MinuteSelected'].fontWeight = style.calSelectedMinuteFontWeight
break
case 'style.calSelectedMinuteTextAlign' :
goStyle['MinuteSelected'].textAlign = style.calSelectedMinuteTextAlign
break
case 'style.calSelectedMinuteVerticalAlign' :
goStyle['MinuteSelected'].verticalAlign = style.calSelectedMinuteVerticalAlign
break
}
}
}
// **********************************************************************
// HELPER FUNCTIONS
// **********************************************************************
//------------------------------------------------------------------------
//
// Function: fnFireOnPropertyChange
//
// Synopsis:
//
// Arguments:
//
// Returns:
//
// Notes:
//
//------------------------------------------------------------------------
function fnFireOnPropertyChange(name1, value1)
{
var evObj = createEventObject()
evObj.setAttribute(name1, value1)
onPropertyChange.fire(evObj)
}
//------------------------------------------------------------------------
//
// Function: fnUpdateGridColors
//
// Synopsis: This is a helper function for the calendar grid rendering
// properties. It handles setting the style rules to create
// the desired effects.
//
// Arguments: none
//
// Returns: none
//
// Notes: none
//
//------------------------------------------------------------------------
function fnUpdateGridColors()
{
switch (gsGridCellEffect)
{
case "raised" :
goStyle['OffMinute'].borderLeftColor = 'white'
goStyle['OffMinute'].borderTopColor = 'white'
goStyle['OffMinute'].borderRightColor = 'black'
goStyle['OffMinute'].borderBottomColor = 'black'
goStyle['Minute'].borderLeftColor = 'white'
goStyle['Minute'].borderTopColor = 'white'
goStyle['Minute'].borderRightColor = 'black'
goStyle['Minute'].borderBottomColor = 'black'
goStyle['MinuteSelected'].borderLeftColor = 'white'
goStyle['MinuteSelected'].borderTopColor = 'white'
goStyle['MinuteSelected'].borderRightColor = 'black'
goStyle['MinuteSelected'].borderBottomColor = 'black'
break
case "flat" :
goStyle['OffMinute'].borderLeftColor = goStyle['OffMinute'].backgroundColor
goStyle['OffMinute'].borderTopColor = goStyle['OffMinute'].backgroundColor
goStyle['OffMinute'].borderRightColor = (gbShowVerticalGrid) ? gsGridLinesColor : goStyle['Minute'].backgroundColor
goStyle['OffMinute'].borderBottomColor = (gbShowHorizontalGrid) ? gsGridLinesColor : goStyle['Minute'].backgroundColor
goStyle['Minute'].borderLeftColor = goStyle['Minute'].backgroundColor
goStyle['Minute'].borderTopColor = goStyle['Minute'].backgroundColor
goStyle['Minute'].borderRightColor = (gbShowVerticalGrid) ? gsGridLinesColor : goStyle['Minute'].backgroundColor
goStyle['Minute'].borderBottomColor = (gbShowHorizontalGrid) ? gsGridLinesColor : goStyle['Minute'].backgroundColor
goStyle['MinuteSelected'].borderLeftColor = goStyle['MinuteSelected'].backgroundColor
goStyle['MinuteSelected'].borderTopColor = goStyle['MinuteSelected'].backgroundColor
goStyle['MinuteSelected'].borderRightColor = (gbShowVerticalGrid) ? gsGridLinesColor : goStyle['Minute'].backgroundColor
goStyle['MinuteSelected'].borderBottomColor = (gbShowHorizontalGrid) ? gsGridLinesColor : goStyle['Minute'].backgroundColor
break
case "sunken" :
goStyle['OffMinute'].borderLeftColor = 'black'
goStyle['OffMinute'].borderTopColor = 'black'
goStyle['OffMinute'].borderRightColor = 'white'
goStyle['OffMinute'].borderBottomColor = 'white'
goStyle['Minute'].borderLeftColor = 'black'
goStyle['Minute'].borderTopColor = 'black'
goStyle['Minute'].borderRightColor = 'white'
goStyle['Minute'].borderBottomColor = 'white'
goStyle['MinuteSelected'].borderLeftColor = 'black'
goStyle['MinuteSelected'].borderTopColor = 'black'
goStyle['MinuteSelected'].borderRightColor = 'white'
goStyle['MinuteSelected'].borderBottomColor = 'white'
break
default :
throw 450
}
}
</script>
<public:property put=fnPutMinute get=fnGetMinute name="minute">
<public:property put=fnPutHour get=fnGetHour name="hour">
<public:property put=fnPutHourLength get=fnGetHourLength name="hourLength">
<public:property put=fnPutShowTimeSelectors get=fnGetShowTimeSelectors name="showTimeSelectors">
<public:property put=fnPutGridCellEffect get=fnGetGridCellEffect name="gridCellEffect">
<public:property put=fnPutGridLinesColor get=fnGetGridLinesColor name="gridLinesColor">
<public:property put=fnPutShowVerticalGrid get=fnGetShowVerticalGrid name="showVerticalGrid">
<public:property put=fnPutShowHorizontalGrid get=fnGetShowHorizontalGrid name="showHorizontalGrid">
<public:property put=fnPutValue get=fnGetValue name="value">
<public:property put=fnPutValueIsNull get=fnGetValueIsNull name="valueIsNull">
<public:property put=fnPutReadOnly get=fnGetReadOnly name="readOnly">
<public:event id="onChange" name="onchange">
<public:event id="onPropertyChange" name="onpropertychange">
<public:event id="onError" name="onerror">