@syncfusion/ej2-schedule 30.2.4 → 31.1.17
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.
- package/dist/ej2-schedule.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +132 -43
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +132 -43
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/dist/ts/common/calendar-util.d.ts +92 -0
- package/dist/ts/common/calendar-util.ts +261 -0
- package/dist/ts/common/index.d.ts +4 -0
- package/dist/ts/common/index.ts +4 -0
- package/dist/ts/components.d.ts +5 -0
- package/dist/ts/components.ts +5 -0
- package/dist/ts/index.d.ts +6 -0
- package/dist/ts/index.ts +7 -0
- package/dist/ts/recurrence-editor/date-generator.d.ts +76 -0
- package/dist/ts/recurrence-editor/date-generator.ts +1699 -0
- package/dist/ts/recurrence-editor/index.d.ts +6 -0
- package/dist/ts/recurrence-editor/index.ts +6 -0
- package/dist/ts/recurrence-editor/recurrence-editor-model.d.ts +112 -0
- package/dist/ts/recurrence-editor/recurrence-editor.d.ts +245 -0
- package/dist/ts/recurrence-editor/recurrence-editor.ts +1257 -0
- package/dist/ts/schedule/actions/action-base.d.ts +44 -0
- package/dist/ts/schedule/actions/action-base.ts +493 -0
- package/dist/ts/schedule/actions/crud.d.ts +41 -0
- package/dist/ts/schedule/actions/crud.ts +784 -0
- package/dist/ts/schedule/actions/data.d.ts +63 -0
- package/dist/ts/schedule/actions/data.ts +128 -0
- package/dist/ts/schedule/actions/drag.d.ts +75 -0
- package/dist/ts/schedule/actions/drag.ts +1401 -0
- package/dist/ts/schedule/actions/keyboard.d.ts +100 -0
- package/dist/ts/schedule/actions/keyboard.ts +1435 -0
- package/dist/ts/schedule/actions/resize.d.ts +27 -0
- package/dist/ts/schedule/actions/resize.ts +602 -0
- package/dist/ts/schedule/actions/scroll.d.ts +69 -0
- package/dist/ts/schedule/actions/scroll.ts +105 -0
- package/dist/ts/schedule/actions/touch.d.ts +32 -0
- package/dist/ts/schedule/actions/touch.ts +314 -0
- package/dist/ts/schedule/actions/virtual-scroll.d.ts +55 -0
- package/dist/ts/schedule/actions/virtual-scroll.ts +596 -0
- package/dist/ts/schedule/actions/work-cells.d.ts +14 -0
- package/dist/ts/schedule/actions/work-cells.ts +151 -0
- package/dist/ts/schedule/base/constant.d.ts +102 -0
- package/dist/ts/schedule/base/constant.ts +103 -0
- package/dist/ts/schedule/base/css-constant.d.ts +475 -0
- package/dist/ts/schedule/base/css-constant.ts +475 -0
- package/dist/ts/schedule/base/interface.d.ts +673 -0
- package/dist/ts/schedule/base/interface.ts +738 -0
- package/dist/ts/schedule/base/resource.d.ts +59 -0
- package/dist/ts/schedule/base/resource.ts +1091 -0
- package/dist/ts/schedule/base/schedule-model.d.ts +930 -0
- package/dist/ts/schedule/base/schedule.d.ts +1967 -0
- package/dist/ts/schedule/base/schedule.ts +4221 -0
- package/dist/ts/schedule/base/type.d.ts +134 -0
- package/dist/ts/schedule/base/type.ts +142 -0
- package/dist/ts/schedule/base/util.d.ts +266 -0
- package/dist/ts/schedule/base/util.ts +492 -0
- package/dist/ts/schedule/event-renderer/agenda-base.d.ts +15 -0
- package/dist/ts/schedule/event-renderer/agenda-base.ts +423 -0
- package/dist/ts/schedule/event-renderer/event-base.d.ts +101 -0
- package/dist/ts/schedule/event-renderer/event-base.ts +1501 -0
- package/dist/ts/schedule/event-renderer/inline-edit.d.ts +23 -0
- package/dist/ts/schedule/event-renderer/inline-edit.ts +287 -0
- package/dist/ts/schedule/event-renderer/month.d.ts +60 -0
- package/dist/ts/schedule/event-renderer/month.ts +760 -0
- package/dist/ts/schedule/event-renderer/timeline-view.d.ts +51 -0
- package/dist/ts/schedule/event-renderer/timeline-view.ts +606 -0
- package/dist/ts/schedule/event-renderer/vertical-view.d.ts +57 -0
- package/dist/ts/schedule/event-renderer/vertical-view.ts +898 -0
- package/dist/ts/schedule/event-renderer/year.d.ts +27 -0
- package/dist/ts/schedule/event-renderer/year.ts +623 -0
- package/dist/ts/schedule/exports/calendar-export.d.ts +16 -0
- package/dist/ts/schedule/exports/calendar-export.ts +160 -0
- package/dist/ts/schedule/exports/calendar-import.d.ts +18 -0
- package/dist/ts/schedule/exports/calendar-import.ts +277 -0
- package/dist/ts/schedule/exports/excel-export.d.ts +14 -0
- package/dist/ts/schedule/exports/excel-export.ts +89 -0
- package/dist/ts/schedule/exports/index.d.ts +7 -0
- package/dist/ts/schedule/exports/index.ts +7 -0
- package/dist/ts/schedule/exports/print.d.ts +20 -0
- package/dist/ts/schedule/exports/print.ts +233 -0
- package/dist/ts/schedule/index.d.ts +26 -0
- package/dist/ts/schedule/index.ts +26 -0
- package/dist/ts/schedule/models/event-settings-model.d.ts +165 -0
- package/dist/ts/schedule/models/event-settings.d.ts +149 -0
- package/dist/ts/schedule/models/event-settings.ts +187 -0
- package/dist/ts/schedule/models/field-options-model.d.ts +37 -0
- package/dist/ts/schedule/models/field-options.d.ts +31 -0
- package/dist/ts/schedule/models/field-options.ts +41 -0
- package/dist/ts/schedule/models/fields-model.d.ts +129 -0
- package/dist/ts/schedule/models/fields.d.ts +117 -0
- package/dist/ts/schedule/models/fields.ts +149 -0
- package/dist/ts/schedule/models/group-model.d.ts +69 -0
- package/dist/ts/schedule/models/group.d.ts +60 -0
- package/dist/ts/schedule/models/group.ts +75 -0
- package/dist/ts/schedule/models/header-rows-model.d.ts +33 -0
- package/dist/ts/schedule/models/header-rows.d.ts +30 -0
- package/dist/ts/schedule/models/header-rows.ts +35 -0
- package/dist/ts/schedule/models/models.d.ts +14 -0
- package/dist/ts/schedule/models/models.ts +15 -0
- package/dist/ts/schedule/models/quick-info-templates-model.d.ts +52 -0
- package/dist/ts/schedule/models/quick-info-templates.d.ts +47 -0
- package/dist/ts/schedule/models/quick-info-templates.ts +56 -0
- package/dist/ts/schedule/models/resources-model.d.ts +122 -0
- package/dist/ts/schedule/models/resources.d.ts +106 -0
- package/dist/ts/schedule/models/resources.ts +138 -0
- package/dist/ts/schedule/models/time-scale-model.d.ts +57 -0
- package/dist/ts/schedule/models/time-scale.d.ts +50 -0
- package/dist/ts/schedule/models/time-scale.ts +61 -0
- package/dist/ts/schedule/models/toolbar-model.d.ts +196 -0
- package/dist/ts/schedule/models/toolbar.d.ts +176 -0
- package/dist/ts/schedule/models/toolbar.ts +196 -0
- package/dist/ts/schedule/models/views-model.d.ts +370 -0
- package/dist/ts/schedule/models/views.d.ts +335 -0
- package/dist/ts/schedule/models/views.ts +408 -0
- package/dist/ts/schedule/models/work-hours-model.d.ts +29 -0
- package/dist/ts/schedule/models/work-hours.d.ts +24 -0
- package/dist/ts/schedule/models/work-hours.ts +31 -0
- package/dist/ts/schedule/popups/event-tooltip.d.ts +16 -0
- package/dist/ts/schedule/popups/event-tooltip.ts +203 -0
- package/dist/ts/schedule/popups/event-window.d.ts +118 -0
- package/dist/ts/schedule/popups/event-window.ts +2055 -0
- package/dist/ts/schedule/popups/form-validator.d.ts +16 -0
- package/dist/ts/schedule/popups/form-validator.ts +110 -0
- package/dist/ts/schedule/popups/quick-popups.d.ts +78 -0
- package/dist/ts/schedule/popups/quick-popups.ts +1470 -0
- package/dist/ts/schedule/renderer/agenda.d.ts +45 -0
- package/dist/ts/schedule/renderer/agenda.ts +497 -0
- package/dist/ts/schedule/renderer/day.d.ts +20 -0
- package/dist/ts/schedule/renderer/day.ts +28 -0
- package/dist/ts/schedule/renderer/header-renderer.d.ts +48 -0
- package/dist/ts/schedule/renderer/header-renderer.ts +736 -0
- package/dist/ts/schedule/renderer/month-agenda.d.ts +29 -0
- package/dist/ts/schedule/renderer/month-agenda.ts +184 -0
- package/dist/ts/schedule/renderer/month.d.ts +61 -0
- package/dist/ts/schedule/renderer/month.ts +766 -0
- package/dist/ts/schedule/renderer/renderer.d.ts +13 -0
- package/dist/ts/schedule/renderer/renderer.ts +165 -0
- package/dist/ts/schedule/renderer/timeline-header-row.d.ts +15 -0
- package/dist/ts/schedule/renderer/timeline-header-row.ts +132 -0
- package/dist/ts/schedule/renderer/timeline-month.d.ts +29 -0
- package/dist/ts/schedule/renderer/timeline-month.ts +184 -0
- package/dist/ts/schedule/renderer/timeline-view.d.ts +31 -0
- package/dist/ts/schedule/renderer/timeline-view.ts +308 -0
- package/dist/ts/schedule/renderer/timeline-year.d.ts +22 -0
- package/dist/ts/schedule/renderer/timeline-year.ts +450 -0
- package/dist/ts/schedule/renderer/vertical-view.d.ts +63 -0
- package/dist/ts/schedule/renderer/vertical-view.ts +911 -0
- package/dist/ts/schedule/renderer/view-base.d.ts +83 -0
- package/dist/ts/schedule/renderer/view-base.ts +709 -0
- package/dist/ts/schedule/renderer/week.d.ts +22 -0
- package/dist/ts/schedule/renderer/week.ts +35 -0
- package/dist/ts/schedule/renderer/work-week.d.ts +22 -0
- package/dist/ts/schedule/renderer/work-week.ts +36 -0
- package/dist/ts/schedule/renderer/year.d.ts +46 -0
- package/dist/ts/schedule/renderer/year.ts +470 -0
- package/dist/ts/schedule/timezone/timezone.d.ts +16 -0
- package/dist/ts/schedule/timezone/timezone.ts +313 -0
- package/package.json +56 -21
- package/src/schedule/actions/action-base.js +3 -0
- package/src/schedule/actions/drag.js +11 -4
- package/src/schedule/actions/keyboard.js +1 -1
- package/src/schedule/actions/resize.js +9 -5
- package/src/schedule/actions/virtual-scroll.js +3 -0
- package/src/schedule/base/css-constant.d.ts +2 -0
- package/src/schedule/base/css-constant.js +2 -0
- package/src/schedule/base/schedule.js +15 -1
- package/src/schedule/event-renderer/agenda-base.d.ts +1 -1
- package/src/schedule/event-renderer/agenda-base.js +5 -4
- package/src/schedule/event-renderer/inline-edit.js +11 -6
- package/src/schedule/event-renderer/month.js +5 -3
- package/src/schedule/event-renderer/vertical-view.js +3 -0
- package/src/schedule/event-renderer/year.d.ts +2 -0
- package/src/schedule/event-renderer/year.js +28 -4
- package/src/schedule/popups/event-tooltip.js +4 -0
- package/src/schedule/popups/event-window.js +2 -2
- package/src/schedule/popups/quick-popups.js +5 -1
- package/src/schedule/renderer/agenda.js +3 -2
- package/src/schedule/renderer/month.js +9 -7
- package/src/schedule/renderer/vertical-view.js +1 -1
- package/src/schedule/renderer/view-base.d.ts +2 -0
- package/src/schedule/renderer/view-base.js +9 -0
- package/src/schedule/renderer/year.js +3 -2
- package/styles/bds-lite.css +11 -8
- package/styles/bds.css +11 -8
- package/styles/bootstrap-dark-lite.css +12 -9
- package/styles/bootstrap-dark.css +12 -9
- package/styles/bootstrap-lite.css +12 -9
- package/styles/bootstrap.css +12 -9
- package/styles/bootstrap4-lite.css +11 -8
- package/styles/bootstrap4.css +11 -8
- package/styles/bootstrap5-dark-lite.css +11 -8
- package/styles/bootstrap5-dark.css +11 -8
- package/styles/bootstrap5-lite.css +11 -8
- package/styles/bootstrap5.3-lite.css +11 -8
- package/styles/bootstrap5.3.css +11 -8
- package/styles/bootstrap5.css +11 -8
- package/styles/fabric-dark-lite.css +12 -9
- package/styles/fabric-dark.css +12 -9
- package/styles/fabric-lite.css +12 -9
- package/styles/fabric.css +12 -9
- package/styles/fluent-dark-lite.css +13 -10
- package/styles/fluent-dark.css +13 -10
- package/styles/fluent-lite.css +13 -10
- package/styles/fluent.css +13 -10
- package/styles/fluent2-lite.css +11 -8
- package/styles/fluent2.css +11 -8
- package/styles/highcontrast-light-lite.css +12 -9
- package/styles/highcontrast-light.css +12 -9
- package/styles/highcontrast-lite.css +12 -9
- package/styles/highcontrast.css +12 -9
- package/styles/material-dark-lite.css +12 -9
- package/styles/material-dark.css +12 -9
- package/styles/material-lite.css +12 -9
- package/styles/material.css +12 -9
- package/styles/material3-dark-lite.css +11 -8
- package/styles/material3-dark.css +11 -8
- package/styles/material3-lite.css +11 -8
- package/styles/material3.css +11 -8
- package/styles/recurrence-editor/_bds-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap4-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap5.3-definition.scss +1 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_fabric-definition.scss +1 -0
- package/styles/recurrence-editor/_fluent-definition.scss +1 -0
- package/styles/recurrence-editor/_fluent2-definition.scss +1 -0
- package/styles/recurrence-editor/_fusionnew-definition.scss +1 -0
- package/styles/recurrence-editor/_highcontrast-definition.scss +1 -0
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +1 -0
- package/styles/recurrence-editor/_layout.scss +5 -1
- package/styles/recurrence-editor/_material-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_material-definition.scss +1 -0
- package/styles/recurrence-editor/_material3-definition.scss +1 -0
- package/styles/recurrence-editor/_tailwind-definition.scss +1 -0
- package/styles/recurrence-editor/_tailwind3-definition.scss +1 -0
- package/styles/recurrence-editor/bds.css +3 -0
- package/styles/recurrence-editor/bootstrap-dark.css +4 -1
- package/styles/recurrence-editor/bootstrap.css +4 -1
- package/styles/recurrence-editor/bootstrap4.css +3 -0
- package/styles/recurrence-editor/bootstrap5-dark.css +3 -0
- package/styles/recurrence-editor/bootstrap5.3.css +3 -0
- package/styles/recurrence-editor/bootstrap5.css +3 -0
- package/styles/recurrence-editor/fabric-dark.css +4 -1
- package/styles/recurrence-editor/fabric.css +4 -1
- package/styles/recurrence-editor/fluent-dark.css +4 -1
- package/styles/recurrence-editor/fluent.css +4 -1
- package/styles/recurrence-editor/fluent2.css +3 -0
- package/styles/recurrence-editor/highcontrast-light.css +4 -1
- package/styles/recurrence-editor/highcontrast.css +4 -1
- package/styles/recurrence-editor/material-dark.css +4 -1
- package/styles/recurrence-editor/material.css +4 -1
- package/styles/recurrence-editor/material3-dark.css +3 -0
- package/styles/recurrence-editor/material3.css +3 -0
- package/styles/recurrence-editor/tailwind-dark.css +3 -0
- package/styles/recurrence-editor/tailwind.css +3 -0
- package/styles/recurrence-editor/tailwind3.css +3 -0
- package/styles/schedule/_bds-definition.scss +2 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +2 -0
- package/styles/schedule/_bootstrap-definition.scss +2 -0
- package/styles/schedule/_bootstrap4-definition.scss +2 -0
- package/styles/schedule/_bootstrap5-definition.scss +2 -0
- package/styles/schedule/_bootstrap5.3-definition.scss +2 -0
- package/styles/schedule/_fabric-dark-definition.scss +2 -0
- package/styles/schedule/_fabric-definition.scss +2 -0
- package/styles/schedule/_fluent-definition.scss +3 -1
- package/styles/schedule/_fluent2-definition.scss +2 -0
- package/styles/schedule/_fusionnew-definition.scss +2 -0
- package/styles/schedule/_highcontrast-definition.scss +2 -0
- package/styles/schedule/_highcontrast-light-definition.scss +2 -0
- package/styles/schedule/_layout.scss +12 -11
- package/styles/schedule/_material-dark-definition.scss +2 -0
- package/styles/schedule/_material-definition.scss +2 -0
- package/styles/schedule/_material3-definition.scss +2 -0
- package/styles/schedule/_tailwind-definition.scss +2 -0
- package/styles/schedule/_tailwind3-definition.scss +2 -0
- package/styles/schedule/bds.css +8 -8
- package/styles/schedule/bootstrap-dark.css +8 -8
- package/styles/schedule/bootstrap.css +8 -8
- package/styles/schedule/bootstrap4.css +8 -8
- package/styles/schedule/bootstrap5-dark.css +8 -8
- package/styles/schedule/bootstrap5.3.css +8 -8
- package/styles/schedule/bootstrap5.css +8 -8
- package/styles/schedule/fabric-dark.css +8 -8
- package/styles/schedule/fabric.css +8 -8
- package/styles/schedule/fluent-dark.css +9 -9
- package/styles/schedule/fluent.css +9 -9
- package/styles/schedule/fluent2.css +8 -8
- package/styles/schedule/highcontrast-light.css +8 -8
- package/styles/schedule/highcontrast.css +8 -8
- package/styles/schedule/material-dark.css +8 -8
- package/styles/schedule/material.css +8 -8
- package/styles/schedule/material3-dark.css +8 -8
- package/styles/schedule/material3.css +8 -8
- package/styles/schedule/tailwind-dark.css +8 -8
- package/styles/schedule/tailwind.css +8 -8
- package/styles/schedule/tailwind3.css +8 -8
- package/styles/tailwind-dark-lite.css +11 -8
- package/styles/tailwind-dark.css +11 -8
- package/styles/tailwind-lite.css +11 -8
- package/styles/tailwind.css +11 -8
- package/styles/tailwind3-lite.css +11 -8
- package/styles/tailwind3.css +11 -8
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
import { TimezoneFields} from '../base/interface';
|
|
3
|
+
/**
|
|
4
|
+
* Time zone
|
|
5
|
+
*/
|
|
6
|
+
export class Timezone {
|
|
7
|
+
public timezoneData: TimezoneFields[] = [];
|
|
8
|
+
|
|
9
|
+
constructor() {
|
|
10
|
+
this.timezoneData = this.getTimezoneData();
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
public offset(date: Date, timezone: string): number {
|
|
14
|
+
const localOffset: number = date.getTimezoneOffset();
|
|
15
|
+
try {
|
|
16
|
+
const convertedDate: Date = new Date(date.toLocaleString('en-US', { timeZone: timezone }));
|
|
17
|
+
if (!isNaN(convertedDate.getTime())) {
|
|
18
|
+
return ((date.getTime() - convertedDate.getTime()) / 60000) + localOffset;
|
|
19
|
+
}
|
|
20
|
+
return 0;
|
|
21
|
+
} catch (error) {
|
|
22
|
+
return 0;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
public convert(date: Date, fromOffset: number | string, toOffset: number | string): Date {
|
|
27
|
+
if (typeof fromOffset === 'string') {
|
|
28
|
+
fromOffset = this.offset(date, fromOffset);
|
|
29
|
+
}
|
|
30
|
+
if (typeof toOffset === 'string') {
|
|
31
|
+
toOffset = this.offset(date, toOffset);
|
|
32
|
+
}
|
|
33
|
+
const fromLocalOffset: number = date.getTimezoneOffset();
|
|
34
|
+
date = new Date(date.getTime() + (fromOffset - toOffset) * 60000);
|
|
35
|
+
const toLocalOffset: number = date.getTimezoneOffset();
|
|
36
|
+
return new Date(date.getTime() + (toLocalOffset - fromLocalOffset) * 60000);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
public add(date: Date, timezone: string): Date {
|
|
40
|
+
return this.convert(date, date.getTimezoneOffset(), timezone);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
public remove(date: Date, timezone: string): Date {
|
|
44
|
+
return this.convert(date, timezone, date.getTimezoneOffset());
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
public removeLocalOffset(date: Date): Date {
|
|
48
|
+
return new Date(date.getTime() - (date.getTimezoneOffset() * 60000));
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
public getLocalTimezoneName(): string {
|
|
52
|
+
return (window as any).Intl ? Intl.DateTimeFormat().resolvedOptions().timeZone || 'UTC' : 'UTC';
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
private getTimezoneData(): TimezoneFields[] {
|
|
56
|
+
return timezoneData;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export const timezoneData: TimezoneFields[] = [
|
|
62
|
+
{ Value: 'Pacific/Niue', Text: '(UTC-11:00) Niue' },
|
|
63
|
+
{ Value: 'Pacific/Pago_Pago', Text: '(UTC-11:00) Pago Pago' },
|
|
64
|
+
{ Value: 'Pacific/Honolulu', Text: '(UTC-10:00) Hawaii Time' },
|
|
65
|
+
{ Value: 'Pacific/Rarotonga', Text: '(UTC-10:00) Rarotonga' },
|
|
66
|
+
{ Value: 'Pacific/Tahiti', Text: '(UTC-10:00) Tahiti' },
|
|
67
|
+
{ Value: 'Pacific/Marquesas', Text: '(UTC-09:30) Marquesas' },
|
|
68
|
+
{ Value: 'America/Anchorage', Text: '(UTC-09:00) Alaska Time' },
|
|
69
|
+
{ Value: 'Pacific/Gambier', Text: '(UTC-09:00) Gambier' },
|
|
70
|
+
{ Value: 'America/Los_Angeles', Text: '(UTC-08:00) Pacific Time' },
|
|
71
|
+
{ Value: 'America/Tijuana', Text: '(UTC-08:00) Pacific Time - Tijuana' },
|
|
72
|
+
{ Value: 'America/Vancouver', Text: '(UTC-08:00) Pacific Time - Vancouver' },
|
|
73
|
+
{ Value: 'America/Whitehorse', Text: '(UTC-08:00) Pacific Time - Whitehorse' },
|
|
74
|
+
{ Value: 'Pacific/Pitcairn', Text: '(UTC-08:00) Pitcairn' },
|
|
75
|
+
{ Value: 'America/Denver', Text: '(UTC-07:00) Mountain Time' },
|
|
76
|
+
{ Value: 'America/Phoenix', Text: '(UTC-07:00) Mountain Time - Arizona' },
|
|
77
|
+
{ Value: 'America/Mazatlan', Text: '(UTC-07:00) Mountain Time - Chihuahua, Mazatlan' },
|
|
78
|
+
{ Value: 'America/Dawson_Creek', Text: '(UTC-07:00) Mountain Time - Dawson Creek' },
|
|
79
|
+
{ Value: 'America/Edmonton', Text: '(UTC-07:00) Mountain Time - Edmonton' },
|
|
80
|
+
{ Value: 'America/Hermosillo', Text: '(UTC-07:00) Mountain Time - Hermosillo' },
|
|
81
|
+
{ Value: 'America/Yellowknife', Text: '(UTC-07:00) Mountain Time - Yellowknife' },
|
|
82
|
+
{ Value: 'America/Belize', Text: '(UTC-06:00) Belize' },
|
|
83
|
+
{ Value: 'America/Chicago', Text: '(UTC-06:00) Central Time' },
|
|
84
|
+
{ Value: 'America/Mexico_City', Text: '(UTC-06:00) Central Time - Mexico City' },
|
|
85
|
+
{ Value: 'America/Regina', Text: '(UTC-06:00) Central Time - Regina' },
|
|
86
|
+
{ Value: 'America/Tegucigalpa', Text: '(UTC-06:00) Central Time - Tegucigalpa' },
|
|
87
|
+
{ Value: 'America/Winnipeg', Text: '(UTC-06:00) Central Time - Winnipeg' },
|
|
88
|
+
{ Value: 'America/Costa_Rica', Text: '(UTC-06:00) Costa Rica' },
|
|
89
|
+
{ Value: 'America/El_Salvador', Text: '(UTC-06:00) El Salvador' },
|
|
90
|
+
{ Value: 'Pacific/Galapagos', Text: '(UTC-06:00) Galapagos' },
|
|
91
|
+
{ Value: 'America/Guatemala', Text: '(UTC-06:00) Guatemala' },
|
|
92
|
+
{ Value: 'America/Managua', Text: '(UTC-06:00) Managua' },
|
|
93
|
+
{ Value: 'America/Cancun', Text: '(UTC-05:00) America Cancun' },
|
|
94
|
+
{ Value: 'America/Bogota', Text: '(UTC-05:00) Bogota' },
|
|
95
|
+
{ Value: 'Pacific/Easter', Text: '(UTC-05:00) Easter Island' },
|
|
96
|
+
{ Value: 'America/New_York', Text: '(UTC-05:00) Eastern Time' },
|
|
97
|
+
{ Value: 'America/Iqaluit', Text: '(UTC-05:00) Eastern Time - Iqaluit' },
|
|
98
|
+
{ Value: 'America/Toronto', Text: '(UTC-05:00) Eastern Time - Toronto' },
|
|
99
|
+
{ Value: 'America/Guayaquil', Text: '(UTC-05:00) Guayaquil' },
|
|
100
|
+
{ Value: 'America/Havana', Text: '(UTC-05:00) Havana' },
|
|
101
|
+
{ Value: 'America/Jamaica', Text: '(UTC-05:00) Jamaica' },
|
|
102
|
+
{ Value: 'America/Lima', Text: '(UTC-05:00) Lima' },
|
|
103
|
+
{ Value: 'America/Nassau', Text: '(UTC-05:00) Nassau' },
|
|
104
|
+
{ Value: 'America/Panama', Text: '(UTC-05:00) Panama' },
|
|
105
|
+
{ Value: 'America/Port-au-Prince', Text: '(UTC-05:00) Port-au-Prince' },
|
|
106
|
+
{ Value: 'America/Rio_Branco', Text: '(UTC-05:00) Rio Branco' },
|
|
107
|
+
{ Value: 'America/Halifax', Text: '(UTC-04:00) Atlantic Time - Halifax' },
|
|
108
|
+
{ Value: 'America/Barbados', Text: '(UTC-04:00) Barbados' },
|
|
109
|
+
{ Value: 'Atlantic/Bermuda', Text: '(UTC-04:00) Bermuda' },
|
|
110
|
+
{ Value: 'America/Boa_Vista', Text: '(UTC-04:00) Boa Vista' },
|
|
111
|
+
{ Value: 'America/Caracas', Text: '(UTC-04:00) Caracas' },
|
|
112
|
+
{ Value: 'America/Curacao', Text: '(UTC-04:00) Curacao' },
|
|
113
|
+
{ Value: 'America/Grand_Turk', Text: '(UTC-04:00) Grand Turk' },
|
|
114
|
+
{ Value: 'America/Guyana', Text: '(UTC-04:00) Guyana' },
|
|
115
|
+
{ Value: 'America/La_Paz', Text: '(UTC-04:00) La Paz' },
|
|
116
|
+
{ Value: 'America/Manaus', Text: '(UTC-04:00) Manaus' },
|
|
117
|
+
{ Value: 'America/Martinique', Text: '(UTC-04:00) Martinique' },
|
|
118
|
+
{ Value: 'America/Port_of_Spain', Text: '(UTC-04:00) Port of Spain' },
|
|
119
|
+
{ Value: 'America/Porto_Velho', Text: '(UTC-04:00) Porto Velho' },
|
|
120
|
+
{ Value: 'America/Puerto_Rico', Text: '(UTC-04:00) Puerto Rico' },
|
|
121
|
+
{ Value: 'America/Santo_Domingo', Text: '(UTC-04:00) Santo Domingo' },
|
|
122
|
+
{ Value: 'America/Thule', Text: '(UTC-04:00) Thule' },
|
|
123
|
+
{ Value: 'America/St_Johns', Text: '(UTC-03:30) Newfoundland Time - St. Johns' },
|
|
124
|
+
{ Value: 'America/Araguaina', Text: '(UTC-03:00) Araguaina' },
|
|
125
|
+
{ Value: 'America/Asuncion', Text: '(UTC-03:00) Asuncion' },
|
|
126
|
+
{ Value: 'America/Belem', Text: '(UTC-03:00) Belem' },
|
|
127
|
+
{ Value: 'America/Argentina/Buenos_Aires', Text: '(UTC-03:00) Buenos Aires' },
|
|
128
|
+
{ Value: 'America/Campo_Grande', Text: '(UTC-03:00) Campo Grande' },
|
|
129
|
+
{ Value: 'America/Cayenne', Text: '(UTC-03:00) Cayenne' },
|
|
130
|
+
{ Value: 'America/Cuiaba', Text: '(UTC-03:00) Cuiaba' },
|
|
131
|
+
{ Value: 'America/Fortaleza', Text: '(UTC-03:00) Fortaleza' },
|
|
132
|
+
{ Value: 'America/Godthab', Text: '(UTC-03:00) Godthab' },
|
|
133
|
+
{ Value: 'America/Maceio', Text: '(UTC-03:00) Maceio' },
|
|
134
|
+
{ Value: 'America/Miquelon', Text: '(UTC-03:00) Miquelon' },
|
|
135
|
+
{ Value: 'America/Montevideo', Text: '(UTC-03:00) Montevideo' },
|
|
136
|
+
{ Value: 'Antarctica/Palmer', Text: '(UTC-03:00) Palmer' },
|
|
137
|
+
{ Value: 'America/Paramaribo', Text: '(UTC-03:00) Paramaribo' },
|
|
138
|
+
{ Value: 'America/Punta_Arenas', Text: '(UTC-03:00) Punta Arenas' },
|
|
139
|
+
{ Value: 'America/Recife', Text: '(UTC-03:00) Recife' },
|
|
140
|
+
{ Value: 'Antarctica/Rothera', Text: '(UTC-03:00) Rothera' },
|
|
141
|
+
{ Value: 'America/Bahia', Text: '(UTC-03:00) Salvador' },
|
|
142
|
+
{ Value: 'America/Santiago', Text: '(UTC-03:00) Santiago' },
|
|
143
|
+
{ Value: 'Atlantic/Stanley', Text: '(UTC-03:00) Stanley' },
|
|
144
|
+
{ Value: 'America/Noronha', Text: '(UTC-02:00) Noronha' },
|
|
145
|
+
{ Value: 'America/Sao_Paulo', Text: '(UTC-02:00) Sao Paulo' },
|
|
146
|
+
{ Value: 'Atlantic/South_Georgia', Text: '(UTC-02:00) South Georgia' },
|
|
147
|
+
{ Value: 'Atlantic/Azores', Text: '(UTC-01:00) Azores' },
|
|
148
|
+
{ Value: 'Atlantic/Cape_Verde', Text: '(UTC-01:00) Cape Verde' },
|
|
149
|
+
{ Value: 'America/Scoresbysund', Text: '(UTC-01:00) Scoresbysund' },
|
|
150
|
+
{ Value: 'Africa/Abidjan', Text: '(UTC+00:00) Abidjan' },
|
|
151
|
+
{ Value: 'Africa/Accra', Text: '(UTC+00:00) Accra' },
|
|
152
|
+
{ Value: 'Africa/Bissau', Text: '(UTC+00:00) Bissau' },
|
|
153
|
+
{ Value: 'Atlantic/Canary', Text: '(UTC+00:00) Canary Islands' },
|
|
154
|
+
{ Value: 'Africa/Casablanca', Text: '(UTC+00:00) Casablanca' },
|
|
155
|
+
{ Value: 'America/Danmarkshavn', Text: '(UTC+00:00) Danmarkshavn' },
|
|
156
|
+
{ Value: 'Europe/Dublin', Text: '(UTC+00:00) Dublin' },
|
|
157
|
+
{ Value: 'Africa/El_Aaiun', Text: '(UTC+00:00) El Aaiun' },
|
|
158
|
+
{ Value: 'Atlantic/Faroe', Text: '(UTC+00:00) Faeroe' },
|
|
159
|
+
{ Value: 'Etc/UTC', Text: '(UTC+00:00) UTC (no daylight saving)' },
|
|
160
|
+
{ Value: 'Europe/Lisbon', Text: '(UTC+00:00) Lisbon' },
|
|
161
|
+
{ Value: 'Europe/London', Text: '(UTC+00:00) London' },
|
|
162
|
+
{ Value: 'Africa/Monrovia', Text: '(UTC+00:00) Monrovia' },
|
|
163
|
+
{ Value: 'Atlantic/Reykjavik', Text: '(UTC+00:00) Reykjavik' },
|
|
164
|
+
{ Value: 'UTC', Text: 'UTC' },
|
|
165
|
+
{ Value: 'Africa/Algiers', Text: '(UTC+01:00) Algiers' },
|
|
166
|
+
{ Value: 'Europe/Amsterdam', Text: '(UTC+01:00) Amsterdam' },
|
|
167
|
+
{ Value: 'Europe/Andorra', Text: '(UTC+01:00) Andorra' },
|
|
168
|
+
{ Value: 'Europe/Berlin', Text: '(UTC+01:00) Berlin' },
|
|
169
|
+
{ Value: 'Europe/Brussels', Text: '(UTC+01:00) Brussels' },
|
|
170
|
+
{ Value: 'Europe/Budapest', Text: '(UTC+01:00) Budapest' },
|
|
171
|
+
{ Value: 'Europe/Belgrade', Text: '(UTC+01:00) Central European Time - Belgrade' },
|
|
172
|
+
{ Value: 'Europe/Prague', Text: '(UTC+01:00) Central European Time - Prague' },
|
|
173
|
+
{ Value: 'Africa/Ceuta', Text: '(UTC+01:00) Ceuta' },
|
|
174
|
+
{ Value: 'Europe/Copenhagen', Text: '(UTC+01:00) Copenhagen' },
|
|
175
|
+
{ Value: 'Europe/Gibraltar', Text: '(UTC+01:00) Gibraltar' },
|
|
176
|
+
{ Value: 'Africa/Lagos', Text: '(UTC+01:00) Lagos' },
|
|
177
|
+
{ Value: 'Europe/Luxembourg', Text: '(UTC+01:00) Luxembourg' },
|
|
178
|
+
{ Value: 'Europe/Madrid', Text: '(UTC+01:00) Madrid' },
|
|
179
|
+
{ Value: 'Europe/Malta', Text: '(UTC+01:00) Malta' },
|
|
180
|
+
{ Value: 'Europe/Monaco', Text: '(UTC+01:00) Monaco' },
|
|
181
|
+
{ Value: 'Africa/Ndjamena', Text: '(UTC+01:00) Ndjamena' },
|
|
182
|
+
{ Value: 'Europe/Oslo', Text: '(UTC+01:00) Oslo' },
|
|
183
|
+
{ Value: 'Europe/Paris', Text: '(UTC+01:00) Paris' },
|
|
184
|
+
{ Value: 'Europe/Rome', Text: '(UTC+01:00) Rome' },
|
|
185
|
+
{ Value: 'Europe/Stockholm', Text: '(UTC+01:00) Stockholm' },
|
|
186
|
+
{ Value: 'Europe/Tirane', Text: '(UTC+01:00) Tirane' },
|
|
187
|
+
{ Value: 'Africa/Tunis', Text: '(UTC+01:00) Tunis' },
|
|
188
|
+
{ Value: 'Europe/Vienna', Text: '(UTC+01:00) Vienna' },
|
|
189
|
+
{ Value: 'Europe/Warsaw', Text: '(UTC+01:00) Warsaw' },
|
|
190
|
+
{ Value: 'Europe/Zurich', Text: '(UTC+01:00) Zurich' },
|
|
191
|
+
{ Value: 'Asia/Amman', Text: '(UTC+02:00) Amman' },
|
|
192
|
+
{ Value: 'Europe/Athens', Text: '(UTC+02:00) Athens' },
|
|
193
|
+
{ Value: 'Asia/Beirut', Text: '(UTC+02:00) Beirut' },
|
|
194
|
+
{ Value: 'Europe/Bucharest', Text: '(UTC+02:00) Bucharest' },
|
|
195
|
+
{ Value: 'Africa/Cairo', Text: '(UTC+02:00) Cairo' },
|
|
196
|
+
{ Value: 'Europe/Chisinau', Text: '(UTC+02:00) Chisinau' },
|
|
197
|
+
{ Value: 'Asia/Damascus', Text: '(UTC+02:00) Damascus' },
|
|
198
|
+
{ Value: 'Asia/Gaza', Text: '(UTC+02:00) Gaza' },
|
|
199
|
+
{ Value: 'Europe/Helsinki', Text: '(UTC+02:00) Helsinki' },
|
|
200
|
+
{ Value: 'Asia/Jerusalem', Text: '(UTC+02:00) Jerusalem' },
|
|
201
|
+
{ Value: 'Africa/Johannesburg', Text: '(UTC+02:00) Johannesburg' },
|
|
202
|
+
{ Value: 'Africa/Khartoum', Text: '(UTC+02:00) Khartoum' },
|
|
203
|
+
{ Value: 'Europe/Kiev', Text: '(UTC+02:00) Kiev' },
|
|
204
|
+
{ Value: 'Africa/Maputo', Text: '(UTC+02:00) Maputo' },
|
|
205
|
+
{ Value: 'Europe/Kaliningrad', Text: '(UTC+02:00) Moscow-01 - Kaliningrad' },
|
|
206
|
+
{ Value: 'Asia/Nicosia', Text: '(UTC+02:00) Nicosia' },
|
|
207
|
+
{ Value: 'Europe/Riga', Text: '(UTC+02:00) Riga' },
|
|
208
|
+
{ Value: 'Europe/Sofia', Text: '(UTC+02:00) Sofia' },
|
|
209
|
+
{ Value: 'Europe/Tallinn', Text: '(UTC+02:00) Tallinn' },
|
|
210
|
+
{ Value: 'Africa/Tripoli', Text: '(UTC+02:00) Tripoli' },
|
|
211
|
+
{ Value: 'Europe/Vilnius', Text: '(UTC+02:00) Vilnius' },
|
|
212
|
+
{ Value: 'Africa/Windhoek', Text: '(UTC+02:00) Windhoek' },
|
|
213
|
+
{ Value: 'Asia/Baghdad', Text: '(UTC+03:00) Baghdad' },
|
|
214
|
+
{ Value: 'Europe/Istanbul', Text: '(UTC+03:00) Istanbul' },
|
|
215
|
+
{ Value: 'Europe/Minsk', Text: '(UTC+03:00) Minsk' },
|
|
216
|
+
{ Value: 'Europe/Moscow', Text: '(UTC+03:00) Moscow+00 - Moscow' },
|
|
217
|
+
{ Value: 'Africa/Nairobi', Text: '(UTC+03:00) Nairobi' },
|
|
218
|
+
{ Value: 'Asia/Qatar', Text: '(UTC+03:00) Qatar' },
|
|
219
|
+
{ Value: 'Asia/Riyadh', Text: '(UTC+03:00) Riyadh' },
|
|
220
|
+
{ Value: 'Antarctica/Syowa', Text: '(UTC+03:00) Syowa' },
|
|
221
|
+
{ Value: 'Asia/Tehran', Text: '(UTC+03:30) Tehran' },
|
|
222
|
+
{ Value: 'Asia/Baku', Text: '(UTC+04:00) Baku' },
|
|
223
|
+
{ Value: 'Asia/Dubai', Text: '(UTC+04:00) Dubai' },
|
|
224
|
+
{ Value: 'Indian/Mahe', Text: '(UTC+04:00) Mahe' },
|
|
225
|
+
{ Value: 'Indian/Mauritius', Text: '(UTC+04:00) Mauritius' },
|
|
226
|
+
{ Value: 'Europe/Samara', Text: '(UTC+04:00) Moscow+01 - Samara' },
|
|
227
|
+
{ Value: 'Indian/Reunion', Text: '(UTC+04:00) Reunion' },
|
|
228
|
+
{ Value: 'Asia/Tbilisi', Text: '(UTC+04:00) Tbilisi' },
|
|
229
|
+
{ Value: 'Asia/Yerevan', Text: '(UTC+04:00) Yerevan' },
|
|
230
|
+
{ Value: 'Asia/Kabul', Text: '(UTC+04:30) Kabul' },
|
|
231
|
+
{ Value: 'Asia/Aqtau', Text: '(UTC+05:00) Aqtau' },
|
|
232
|
+
{ Value: 'Asia/Aqtobe', Text: '(UTC+05:00) Aqtobe' },
|
|
233
|
+
{ Value: 'Asia/Ashgabat', Text: '(UTC+05:00) Ashgabat' },
|
|
234
|
+
{ Value: 'Asia/Dushanbe', Text: '(UTC+05:00) Dushanbe' },
|
|
235
|
+
{ Value: 'Asia/Karachi', Text: '(UTC+05:00) Karachi' },
|
|
236
|
+
{ Value: 'Indian/Kerguelen', Text: '(UTC+05:00) Kerguelen' },
|
|
237
|
+
{ Value: 'Indian/Maldives', Text: '(UTC+05:00) Maldives' },
|
|
238
|
+
{ Value: 'Antarctica/Mawson', Text: '(UTC+05:00) Mawson' },
|
|
239
|
+
{ Value: 'Asia/Yekaterinburg', Text: '(UTC+05:00) Moscow+02 - Yekaterinburg' },
|
|
240
|
+
{ Value: 'Asia/Tashkent', Text: '(UTC+05:00) Tashkent' },
|
|
241
|
+
{ Value: 'Asia/Colombo', Text: '(UTC+05:30) Colombo' },
|
|
242
|
+
{ Value: 'Asia/Kolkata', Text: '(UTC+05:30) India Standard Time' },
|
|
243
|
+
{ Value: 'Asia/Katmandu', Text: '(UTC+05:45) Katmandu' },
|
|
244
|
+
{ Value: 'Asia/Almaty', Text: '(UTC+06:00) Almaty' },
|
|
245
|
+
{ Value: 'Asia/Bishkek', Text: '(UTC+06:00) Bishkek' },
|
|
246
|
+
{ Value: 'Indian/Chagos', Text: '(UTC+06:00) Chagos' },
|
|
247
|
+
{ Value: 'Asia/Dhaka', Text: '(UTC+06:00) Dhaka' },
|
|
248
|
+
{ Value: 'Asia/Omsk', Text: '(UTC+06:00) Moscow+03 - Omsk' },
|
|
249
|
+
{ Value: 'Asia/Thimphu', Text: '(UTC+06:00) Thimphu' },
|
|
250
|
+
{ Value: 'Antarctica/Vostok', Text: '(UTC+06:00) Vostok' },
|
|
251
|
+
{ Value: 'Indian/Cocos', Text: '(UTC+06:30) Cocos' },
|
|
252
|
+
{ Value: 'Asia/Yangon', Text: '(UTC+06:30) Rangoon' },
|
|
253
|
+
{ Value: 'Asia/Bangkok', Text: '(UTC+07:00) Bangkok' },
|
|
254
|
+
{ Value: 'Indian/Christmas', Text: '(UTC+07:00) Christmas' },
|
|
255
|
+
{ Value: 'Antarctica/Davis', Text: '(UTC+07:00) Davis' },
|
|
256
|
+
{ Value: 'Asia/Saigon', Text: '(UTC+07:00) Hanoi' },
|
|
257
|
+
{ Value: 'Asia/Hovd', Text: '(UTC+07:00) Hovd' },
|
|
258
|
+
{ Value: 'Asia/Jakarta', Text: '(UTC+07:00) Jakarta' },
|
|
259
|
+
{ Value: 'Asia/Krasnoyarsk', Text: '(UTC+07:00) Moscow+04 - Krasnoyarsk' },
|
|
260
|
+
{ Value: 'Asia/Brunei', Text: '(UTC+08:00) Brunei' },
|
|
261
|
+
{ Value: 'Asia/Shanghai', Text: '(UTC+08:00) China Time - Beijing' },
|
|
262
|
+
{ Value: 'Asia/Choibalsan', Text: '(UTC+08:00) Choibalsan' },
|
|
263
|
+
{ Value: 'Asia/Hong_Kong', Text: '(UTC+08:00) Hong Kong' },
|
|
264
|
+
{ Value: 'Asia/Kuala_Lumpur', Text: '(UTC+08:00) Kuala Lumpur' },
|
|
265
|
+
{ Value: 'Asia/Macau', Text: '(UTC+08:00) Macau' },
|
|
266
|
+
{ Value: 'Asia/Makassar', Text: '(UTC+08:00) Makassar' },
|
|
267
|
+
{ Value: 'Asia/Manila', Text: '(UTC+08:00) Manila' },
|
|
268
|
+
{ Value: 'Asia/Irkutsk', Text: '(UTC+08:00) Moscow+05 - Irkutsk' },
|
|
269
|
+
{ Value: 'Asia/Singapore', Text: '(UTC+08:00) Singapore' },
|
|
270
|
+
{ Value: 'Asia/Taipei', Text: '(UTC+08:00) Taipei' },
|
|
271
|
+
{ Value: 'Asia/Ulaanbaatar', Text: '(UTC+08:00) Ulaanbaatar' },
|
|
272
|
+
{ Value: 'Australia/Perth', Text: '(UTC+08:00) Western Time - Perth' },
|
|
273
|
+
{ Value: 'Asia/Pyongyang', Text: '(UTC+08:30) Pyongyang' },
|
|
274
|
+
{ Value: 'Asia/Dili', Text: '(UTC+09:00) Dili' },
|
|
275
|
+
{ Value: 'Asia/Jayapura', Text: '(UTC+09:00) Jayapura' },
|
|
276
|
+
{ Value: 'Asia/Yakutsk', Text: '(UTC+09:00) Moscow+06 - Yakutsk' },
|
|
277
|
+
{ Value: 'Pacific/Palau', Text: '(UTC+09:00) Palau' },
|
|
278
|
+
{ Value: 'Asia/Seoul', Text: '(UTC+09:00) Seoul' },
|
|
279
|
+
{ Value: 'Asia/Tokyo', Text: '(UTC+09:00) Tokyo' },
|
|
280
|
+
{ Value: 'Australia/Darwin', Text: '(UTC+09:30) Central Time - Darwin' },
|
|
281
|
+
{ Value: 'Antarctica/DumontDUrville', Text: '(UTC+10:00) Dumont D"Urville' },
|
|
282
|
+
{ Value: 'Australia/Brisbane', Text: '(UTC+10:00) Eastern Time - Brisbane' },
|
|
283
|
+
{ Value: 'Pacific/Guam', Text: '(UTC+10:00) Guam' },
|
|
284
|
+
{ Value: 'Asia/Vladivostok', Text: '(UTC+10:00) Moscow+07 - Vladivostok' },
|
|
285
|
+
{ Value: 'Pacific/Port_Moresby', Text: '(UTC+10:00) Port Moresby' },
|
|
286
|
+
{ Value: 'Pacific / Chuuk', Text: '(UTC+10:00) Truk' },
|
|
287
|
+
{ Value: 'Australia/Adelaide', Text: '(UTC+10:30) Central Time - Adelaide' },
|
|
288
|
+
{ Value: 'Antarctica/Casey', Text: '(UTC+11:00) Casey' },
|
|
289
|
+
{ Value: 'Australia/Hobart', Text: '(UTC+11:00) Eastern Time - Hobart' },
|
|
290
|
+
{ Value: 'Australia/Sydney', Text: '(UTC+11:00) Eastern Time - Melbourne, Sydney' },
|
|
291
|
+
{ Value: 'Pacific/Efate', Text: '(UTC+11:00) Efate' },
|
|
292
|
+
{ Value: 'Pacific/Guadalcanal', Text: '(UTC+11:00) Guadalcanal' },
|
|
293
|
+
{ Value: 'Pacific/Kosrae', Text: '(UTC+11:00) Kosrae' },
|
|
294
|
+
{ Value: 'Asia/Magadan', Text: '(UTC+11:00) Moscow+08 - Magadan' },
|
|
295
|
+
{ Value: 'Pacific / Norfolk', Text: '(UTC+11:00) Norfolk' },
|
|
296
|
+
{ Value: 'Pacific/Noumea', Text: '(UTC+11:00) Noumea' },
|
|
297
|
+
{ Value: 'Pacific/Pohnpei', Text: '(UTC+11:00) Ponape' },
|
|
298
|
+
{ Value: 'Pacific/Funafuti', Text: '(UTC+12:00) Funafuti' },
|
|
299
|
+
{ Value: 'Pacific/Kwajalein', Text: '(UTC+12:00) Kwajalein' },
|
|
300
|
+
{ Value: 'Pacific/Majuro', Text: '(UTC+12:00) Majuro' },
|
|
301
|
+
{ Value: 'Asia/Kamchatka', Text: '(UTC+12:00) Moscow+09 - Petropavlovsk - Kamchatskiy' },
|
|
302
|
+
{ Value: 'Pacific / Nauru', Text: '(UTC+12:00) Nauru' },
|
|
303
|
+
{ Value: 'Pacific/Tarawa', Text: '(UTC+12:00) Tarawa' },
|
|
304
|
+
{ Value: 'Pacific/Wake', Text: '(UTC+12:00) Wake' },
|
|
305
|
+
{ Value: 'Pacific/Wallis', Text: '(UTC+12:00) Wallis' },
|
|
306
|
+
{ Value: 'Pacific/Auckland', Text: '(UTC+13:00) Auckland' },
|
|
307
|
+
{ Value: 'Pacific/Enderbury', Text: '(UTC+13:00) Enderbury' },
|
|
308
|
+
{ Value: 'Pacific/Fakaofo', Text: '(UTC+13:00) Fakaofo' },
|
|
309
|
+
{ Value: 'Pacific/Fiji', Text: '(UTC+13:00) Fiji' },
|
|
310
|
+
{ Value: 'Pacific/Tongatapu', Text: '(UTC+13:00) Tongatapu' },
|
|
311
|
+
{ Value: 'Pacific/Apia', Text: '(UTC+14:00) Apia' },
|
|
312
|
+
{ Value: 'Pacific/Kiritimati', Text: '(UTC+14:00) Kiritimati' }
|
|
313
|
+
];
|
package/package.json
CHANGED
|
@@ -1,25 +1,56 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
2
|
+
"_from": "@syncfusion/ej2-schedule@*",
|
|
3
|
+
"_id": "@syncfusion/ej2-schedule@22.10.0",
|
|
4
|
+
"_inBundle": false,
|
|
5
|
+
"_integrity": "sha512-wRUrWdJexVRx7LR7RmiRfZGZZwYg3l97mwR/jMKA5PjOa/WsBlG6g3b2oh19nF9GpM0I29wWHZ4PN+jdn/aLmg==",
|
|
6
|
+
"_location": "/@syncfusion/ej2-schedule",
|
|
7
|
+
"_phantomChildren": {},
|
|
8
|
+
"_requested": {
|
|
9
|
+
"type": "range",
|
|
10
|
+
"registry": true,
|
|
11
|
+
"raw": "@syncfusion/ej2-schedule@*",
|
|
12
|
+
"name": "@syncfusion/ej2-schedule",
|
|
13
|
+
"escapedName": "@syncfusion%2fej2-schedule",
|
|
14
|
+
"scope": "@syncfusion",
|
|
15
|
+
"rawSpec": "*",
|
|
16
|
+
"saveSpec": null,
|
|
17
|
+
"fetchSpec": "*"
|
|
18
|
+
},
|
|
19
|
+
"_requiredBy": [
|
|
20
|
+
"/",
|
|
21
|
+
"/@syncfusion/ej2",
|
|
22
|
+
"/@syncfusion/ej2-angular-schedule",
|
|
23
|
+
"/@syncfusion/ej2-react-schedule",
|
|
24
|
+
"/@syncfusion/ej2-vue-schedule"
|
|
25
|
+
],
|
|
26
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-development/@syncfusion/ej2-schedule/-/ej2-schedule-22.10.0.tgz",
|
|
27
|
+
"_shasum": "6bb03fc7d2fbfbc356e8669d1236cd72d27665db",
|
|
28
|
+
"_spec": "@syncfusion/ej2-schedule@*",
|
|
29
|
+
"_where": "D:\\SF3992\\WFH\\Nexus\\release",
|
|
30
|
+
"author": {
|
|
31
|
+
"name": "Syncfusion Inc."
|
|
32
|
+
},
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls/issues"
|
|
35
|
+
},
|
|
36
|
+
"bundleDependencies": false,
|
|
9
37
|
"dependencies": {
|
|
10
|
-
"@syncfusion/ej2-base": "~
|
|
11
|
-
"@syncfusion/ej2-buttons": "~
|
|
12
|
-
"@syncfusion/ej2-calendars": "~
|
|
13
|
-
"@syncfusion/ej2-data": "~
|
|
14
|
-
"@syncfusion/ej2-dropdowns": "~
|
|
15
|
-
"@syncfusion/ej2-excel-export": "~
|
|
16
|
-
"@syncfusion/ej2-inputs": "~
|
|
17
|
-
"@syncfusion/ej2-lists": "~
|
|
18
|
-
"@syncfusion/ej2-navigations": "~
|
|
19
|
-
"@syncfusion/ej2-popups": "~
|
|
38
|
+
"@syncfusion/ej2-base": "~31.1.17",
|
|
39
|
+
"@syncfusion/ej2-buttons": "~31.1.17",
|
|
40
|
+
"@syncfusion/ej2-calendars": "~31.1.17",
|
|
41
|
+
"@syncfusion/ej2-data": "~31.1.17",
|
|
42
|
+
"@syncfusion/ej2-dropdowns": "~31.1.17",
|
|
43
|
+
"@syncfusion/ej2-excel-export": "~31.1.17",
|
|
44
|
+
"@syncfusion/ej2-inputs": "~31.1.17",
|
|
45
|
+
"@syncfusion/ej2-lists": "~31.1.17",
|
|
46
|
+
"@syncfusion/ej2-navigations": "~31.1.17",
|
|
47
|
+
"@syncfusion/ej2-popups": "~31.1.17"
|
|
20
48
|
},
|
|
21
|
-
"
|
|
49
|
+
"deprecated": false,
|
|
22
50
|
"description": "Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support.",
|
|
51
|
+
"devDependencies": {},
|
|
52
|
+
"es2015": "./dist/es6/ej2-schedule.es5.js",
|
|
53
|
+
"homepage": "https://www.syncfusion.com/javascript-ui-controls",
|
|
23
54
|
"keywords": [
|
|
24
55
|
"ej2",
|
|
25
56
|
"syncfusion",
|
|
@@ -33,11 +64,15 @@
|
|
|
33
64
|
"appointments-planner",
|
|
34
65
|
"resources-scheduler"
|
|
35
66
|
],
|
|
67
|
+
"license": "SEE LICENSE IN license",
|
|
68
|
+
"main": "./dist/ej2-schedule.umd.min.js",
|
|
69
|
+
"module": "./index.js",
|
|
70
|
+
"name": "@syncfusion/ej2-schedule",
|
|
36
71
|
"repository": {
|
|
37
72
|
"type": "git",
|
|
38
|
-
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
73
|
+
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
39
74
|
},
|
|
40
75
|
"typings": "index.d.ts",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
76
|
+
"version": "31.1.17",
|
|
77
|
+
"sideEffects": false
|
|
43
78
|
}
|
|
@@ -324,6 +324,9 @@ var ActionBase = /** @class */ (function () {
|
|
|
324
324
|
if (this.parent.activeViewOptions.group.resources.length > 0) {
|
|
325
325
|
query = query.concat('[data-group-index = "' + cloneElement.getAttribute('data-group-index') + '"]');
|
|
326
326
|
}
|
|
327
|
+
if (cloneElement.hasAttribute('data-guid')) {
|
|
328
|
+
query += '[data-guid="' + cloneElement.getAttribute('data-guid') + '"]';
|
|
329
|
+
}
|
|
327
330
|
var elements = [].slice.call(this.parent.element.querySelectorAll(query));
|
|
328
331
|
addClass(elements, cls.EVENT_ACTION_CLASS);
|
|
329
332
|
var eventWrappers = [].slice.call(this.parent.element.querySelectorAll('.' + cls.CLONE_ELEMENT_CLASS));
|
|
@@ -58,7 +58,7 @@ var DragAndDrop = /** @class */ (function (_super) {
|
|
|
58
58
|
}
|
|
59
59
|
DragAndDrop.prototype.wireDragEvent = function (element) {
|
|
60
60
|
new Draggable(element, {
|
|
61
|
-
abort: '.' + cls.EVENT_RESIZE_CLASS,
|
|
61
|
+
abort: '.' + cls.EVENT_RESIZE_CLASS + ', .' + cls.INLINE_EDIT_CLASS,
|
|
62
62
|
clone: true,
|
|
63
63
|
isDragScroll: true,
|
|
64
64
|
enableTailMode: this.parent.eventDragArea ? true : false,
|
|
@@ -584,6 +584,11 @@ var DragAndDrop = /** @class */ (function (_super) {
|
|
|
584
584
|
this.actionObj.clone.style.top = formatUnit(td.offsetParent.offsetTop);
|
|
585
585
|
this.actionObj.clone.style.left = formatUnit(td.offsetLeft);
|
|
586
586
|
this.actionObj.clone.style.width = formatUnit(td.offsetWidth);
|
|
587
|
+
if (this.actionObj.cloneElement.length > 1) {
|
|
588
|
+
this.actionObj.cloneElement.forEach(function (element) {
|
|
589
|
+
element.style.width = formatUnit(td.offsetWidth);
|
|
590
|
+
});
|
|
591
|
+
}
|
|
587
592
|
var eventContainer = td;
|
|
588
593
|
var eventWrapper;
|
|
589
594
|
if (this.parent.activeView.isTimelineView()) {
|
|
@@ -873,6 +878,10 @@ var DragAndDrop = /** @class */ (function (_super) {
|
|
|
873
878
|
this.verticalEvent.getTopValue(eStart) : this.actionObj.element.offsetTop;
|
|
874
879
|
if (isNullOrUndefined(index)) {
|
|
875
880
|
if (i === 0) {
|
|
881
|
+
if (this.actionObj.clone.classList.contains(cls.ALLDAY_APPOINTMENT_CLASS)) {
|
|
882
|
+
topValue = this.parent.element.querySelector('.' + cls.ALLDAY_ROW_CLASS).offsetTop;
|
|
883
|
+
appHeight = this.getAllDayEventHeight();
|
|
884
|
+
}
|
|
876
885
|
this.actionObj.clone.style.top = formatUnit(topValue);
|
|
877
886
|
this.actionObj.clone.style.height = formatUnit(appHeight);
|
|
878
887
|
}
|
|
@@ -882,9 +891,7 @@ var DragAndDrop = /** @class */ (function (_super) {
|
|
|
882
891
|
}
|
|
883
892
|
else {
|
|
884
893
|
var appWidth = this.actionObj.cellWidth;
|
|
885
|
-
if (event[this.parent.eventFields.isAllDay]) {
|
|
886
|
-
topValue = this.parent.element.querySelector('.' + cls.ALLDAY_ROW_CLASS).offsetTop;
|
|
887
|
-
appHeight = this.getAllDayEventHeight();
|
|
894
|
+
if (event[this.parent.eventFields.isAllDay] && this.parent.activeViewOptions.timeScale.enable) {
|
|
888
895
|
var timeDiff = event[this.parent.eventFields.endTime].getTime() -
|
|
889
896
|
event[this.parent.eventFields.startTime].getTime();
|
|
890
897
|
var allDayDifference = Math.ceil(timeDiff / (1000 * 3600 * 24));
|
|
@@ -1131,7 +1131,7 @@ var KeyboardInteraction = /** @class */ (function () {
|
|
|
1131
1131
|
};
|
|
1132
1132
|
KeyboardInteraction.prototype.processDelete = function (e) {
|
|
1133
1133
|
var activeEle = document.activeElement;
|
|
1134
|
-
if (this.parent.currentView === 'MonthAgenda') {
|
|
1134
|
+
if (this.parent.currentView === 'MonthAgenda' || (!isNullOrUndefined(activeEle) && closest(activeEle, '.' + cls.POPUP_WRAPPER_CLASS))) {
|
|
1135
1135
|
var selectedEle = this.parent.eventBase.getSelectedEvents().element;
|
|
1136
1136
|
activeEle = ((selectedEle && isNullOrUndefined(selectedEle.length)) ? selectedEle : selectedEle[0]);
|
|
1137
1137
|
}
|
|
@@ -53,17 +53,20 @@ var Resize = /** @class */ (function (_super) {
|
|
|
53
53
|
};
|
|
54
54
|
Resize.prototype.resizeStart = function (e) {
|
|
55
55
|
var _this = this;
|
|
56
|
-
if (e && e.type === 'touchstart' && (!this.parent.uiStateValues.isTapHold ||
|
|
57
|
-
!closest(e.target, '.' + cls.APPOINTMENT_BORDER))) {
|
|
56
|
+
if ((e && e.type === 'touchstart' && (!this.parent.uiStateValues.isTapHold ||
|
|
57
|
+
!closest(e.target, '.' + cls.APPOINTMENT_BORDER))) || closest(e.target, '.' + cls.INLINE_EDIT_CLASS)) {
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
60
|
+
var resizeTarget = closest(e.target, '.' + cls.EVENT_RESIZE_CLASS);
|
|
61
|
+
this.actionObj.element = closest(resizeTarget, '.' + cls.APPOINTMENT_CLASS);
|
|
62
|
+
this.actionObj.event = this.parent.eventBase.getEventByGuid(this.actionObj.element.getAttribute('data-guid'));
|
|
63
|
+
if (isNullOrUndefined(this.actionObj.event)) {
|
|
58
64
|
return;
|
|
59
65
|
}
|
|
60
66
|
this.parent.eventBase.removeSelectedAppointmentClass();
|
|
61
67
|
this.actionObj.action = 'resize';
|
|
62
68
|
this.actionObj.slotInterval = this.parent.activeViewOptions.timeScale.interval / this.parent.activeViewOptions.timeScale.slotCount;
|
|
63
69
|
this.actionObj.interval = this.actionObj.slotInterval;
|
|
64
|
-
var resizeTarget = closest(e.target, '.' + cls.EVENT_RESIZE_CLASS);
|
|
65
|
-
this.actionObj.element = closest(resizeTarget, '.' + cls.APPOINTMENT_CLASS);
|
|
66
|
-
this.actionObj.event = this.parent.eventBase.getEventByGuid(this.actionObj.element.getAttribute('data-guid'));
|
|
67
70
|
var eventObj = extend({}, this.actionObj.event, null, true);
|
|
68
71
|
var resizeArgs = {
|
|
69
72
|
cancel: false,
|
|
@@ -581,6 +584,7 @@ var Resize = /** @class */ (function (_super) {
|
|
|
581
584
|
(Math.ceil((targetWidth - cloneWidth) / this.actionObj.cellWidth) * this.actionObj.cellWidth) : offsetLeft);
|
|
582
585
|
}
|
|
583
586
|
}
|
|
587
|
+
width = Math.floor(width);
|
|
584
588
|
styles.width = formatUnit(width);
|
|
585
589
|
return styles;
|
|
586
590
|
};
|
|
@@ -384,6 +384,9 @@ var VirtualScroll = /** @class */ (function () {
|
|
|
384
384
|
this.removeObsoleteRows(resWrapRows, currentGroupIndices);
|
|
385
385
|
this.removeObsoleteRows(conWrapRows, currentGroupIndices);
|
|
386
386
|
var resourceRows = this.parent.resourceBase.getContentRows(resCollection, true);
|
|
387
|
+
if (this.parent.isReact) {
|
|
388
|
+
this.parent.renderTemplates();
|
|
389
|
+
}
|
|
387
390
|
var contentRows = this.parent.activeView.getContentRows();
|
|
388
391
|
var eventRows = this.parent.activeView.getEventRows(resCollection.length);
|
|
389
392
|
for (var i = 0; i < newGroupIndices.length; i++) {
|
|
@@ -463,6 +463,8 @@ export declare const MONTH_HEADER_WRAPPER: string;
|
|
|
463
463
|
export declare const INLINE_SUBJECT_CLASS: string;
|
|
464
464
|
/** @private */
|
|
465
465
|
export declare const INLINE_APPOINTMENT_CLASS: string;
|
|
466
|
+
/** @private */
|
|
467
|
+
export declare const INLINE_EDIT_CLASS: string;
|
|
466
468
|
/** @hidden */
|
|
467
469
|
export declare const SCROLL_HIDDEN: string;
|
|
468
470
|
/** @private */
|
|
@@ -463,6 +463,8 @@ export var MONTH_HEADER_WRAPPER = 'e-month-header-wrapper';
|
|
|
463
463
|
export var INLINE_SUBJECT_CLASS = 'e-inline-subject';
|
|
464
464
|
/** @private */
|
|
465
465
|
export var INLINE_APPOINTMENT_CLASS = 'e-inline-appointment';
|
|
466
|
+
/** @private */
|
|
467
|
+
export var INLINE_EDIT_CLASS = 'e-inline-edit';
|
|
466
468
|
/** @hidden */
|
|
467
469
|
export var SCROLL_HIDDEN = 'e-scroll-hidden';
|
|
468
470
|
/** @private */
|
|
@@ -1696,6 +1696,14 @@ var Schedule = /** @class */ (function (_super) {
|
|
|
1696
1696
|
if (newProp.allowKeyboardInteraction || newProp.allowClipboard) {
|
|
1697
1697
|
this.keyboardInteractionModule = new KeyboardInteraction(this);
|
|
1698
1698
|
}
|
|
1699
|
+
if (prop === 'allowClipboard') {
|
|
1700
|
+
if (newProp.allowClipboard) {
|
|
1701
|
+
EventHandler.add(document, 'paste', this.onDocumentPaste, this);
|
|
1702
|
+
}
|
|
1703
|
+
else {
|
|
1704
|
+
EventHandler.remove(document, 'paste', this.onDocumentPaste);
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1699
1707
|
break;
|
|
1700
1708
|
case 'timezoneDataSource':
|
|
1701
1709
|
if (this.eventWindow) {
|
|
@@ -2647,12 +2655,18 @@ var Schedule = /** @class */ (function (_super) {
|
|
|
2647
2655
|
*/
|
|
2648
2656
|
Schedule.prototype.paste = function (targetElement) {
|
|
2649
2657
|
var _this = this;
|
|
2650
|
-
if (!this.allowClipboard || !this.allowKeyboardInteraction) {
|
|
2658
|
+
if (!this.allowClipboard || !this.allowKeyboardInteraction || !targetElement) {
|
|
2651
2659
|
return;
|
|
2652
2660
|
}
|
|
2653
2661
|
if (!targetElement.classList.contains('e-work-cells') && !targetElement.classList.contains('e-all-day-cells')) {
|
|
2654
2662
|
return;
|
|
2655
2663
|
}
|
|
2664
|
+
if (!this.activeCellsData) {
|
|
2665
|
+
var cellData = this.getCellDetails([targetElement]);
|
|
2666
|
+
if (cellData) {
|
|
2667
|
+
this.activeCellsData = cellData;
|
|
2668
|
+
}
|
|
2669
|
+
}
|
|
2656
2670
|
var clipboardData = new DataTransfer();
|
|
2657
2671
|
if (!isNullOrUndefined(navigator.clipboard)) {
|
|
2658
2672
|
navigator.clipboard.readText()
|
|
@@ -8,7 +8,7 @@ export declare class AgendaBase extends ViewBase {
|
|
|
8
8
|
wireEventActions(): void;
|
|
9
9
|
calculateResourceTableElement(tBody: Element, noOfDays: number, agendaDate: Date, agendaEnd?: Date): void;
|
|
10
10
|
private createResourceTableRow;
|
|
11
|
-
createDateHeaderElement(date: Date): Element;
|
|
11
|
+
createDateHeaderElement(date: Date, groupIndex?: number): Element;
|
|
12
12
|
renderEmptyContent(tBody: Element, agendaDate: Date, hasNoEvents?: boolean): void;
|
|
13
13
|
createTableRowElement(date: Date, type: string): Element;
|
|
14
14
|
destroy(): void;
|
|
@@ -229,7 +229,8 @@ var AgendaBase = /** @class */ (function (_super) {
|
|
|
229
229
|
rowSpan: 1, type: 'dateColumn', resource: resColl[parseInt((resColl.length - 1).toString(), 10)],
|
|
230
230
|
groupOrder: resData[parseInt(res.toString(), 10)].groupOrder,
|
|
231
231
|
resourceData: resData[parseInt(res.toString(), 10)].resourceData,
|
|
232
|
-
date: agendaDate
|
|
232
|
+
date: agendaDate,
|
|
233
|
+
groupIndex: resData[parseInt(res.toString(), 10)].groupIndex
|
|
233
234
|
};
|
|
234
235
|
if (!lastLevelInfo[parseInt(tempIndex.toString(), 10)]) {
|
|
235
236
|
lastLevelInfo[parseInt(tempIndex.toString(), 10)] = [];
|
|
@@ -322,7 +323,7 @@ var AgendaBase = /** @class */ (function (_super) {
|
|
|
322
323
|
continue;
|
|
323
324
|
}
|
|
324
325
|
ntd.setAttribute('data-date', data.date.getTime().toString());
|
|
325
|
-
ntd.appendChild(this.createDateHeaderElement(data.date));
|
|
326
|
+
ntd.appendChild(this.createDateHeaderElement(data.date, data.groupIndex));
|
|
326
327
|
var className = [cls.AGENDA_CELLS_CLASS, cls.AGENDA_DATE_CLASS];
|
|
327
328
|
if (data.cssClass) {
|
|
328
329
|
className.push(data.cssClass);
|
|
@@ -377,11 +378,11 @@ var AgendaBase = /** @class */ (function (_super) {
|
|
|
377
378
|
tBody.appendChild(ntr);
|
|
378
379
|
}
|
|
379
380
|
};
|
|
380
|
-
AgendaBase.prototype.createDateHeaderElement = function (date) {
|
|
381
|
+
AgendaBase.prototype.createDateHeaderElement = function (date, groupIndex) {
|
|
381
382
|
var dateHeader;
|
|
382
383
|
if (this.parent.activeViewOptions.dateHeaderTemplate) {
|
|
383
384
|
dateHeader = createElement('div', { className: cls.AGENDA_HEADER_CLASS });
|
|
384
|
-
var args = { date: date, type: 'dateHeader' };
|
|
385
|
+
var args = { date: date, type: 'dateHeader', groupIndex: groupIndex };
|
|
385
386
|
var scheduleId = this.parent.element.id + '_';
|
|
386
387
|
var viewName = this.parent.activeViewOptions.dateHeaderTemplateName;
|
|
387
388
|
var templateId = scheduleId + viewName + 'dateHeaderTemplate';
|