@syncfusion/ej2-schedule 25.2.6 → 26.1.35

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.
Files changed (161) hide show
  1. package/.eslintrc.json +3 -2
  2. package/dist/ej2-schedule.min.js +2 -2
  3. package/dist/ej2-schedule.umd.min.js +2 -2
  4. package/dist/ej2-schedule.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-schedule.es2015.js +331 -332
  6. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  7. package/dist/es6/ej2-schedule.es5.js +392 -407
  8. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  9. package/dist/global/ej2-schedule.min.js +2 -2
  10. package/dist/global/ej2-schedule.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +17 -16
  13. package/src/recurrence-editor/date-generator.js +1 -0
  14. package/src/recurrence-editor/recurrence-editor.d.ts +8 -8
  15. package/src/recurrence-editor/recurrence-editor.js +1 -2
  16. package/src/schedule/actions/drag.js +2 -1
  17. package/src/schedule/actions/keyboard.js +1 -1
  18. package/src/schedule/actions/virtual-scroll.js +2 -1
  19. package/src/schedule/base/interface.js +0 -1
  20. package/src/schedule/base/schedule-model.d.ts +11 -11
  21. package/src/schedule/base/schedule.d.ts +11 -11
  22. package/src/schedule/base/schedule.js +22 -9
  23. package/src/schedule/base/util.js +1 -1
  24. package/src/schedule/event-renderer/event-base.js +5 -3
  25. package/src/schedule/event-renderer/timeline-view.js +4 -2
  26. package/src/schedule/event-renderer/year.js +2 -1
  27. package/src/schedule/exports/calendar-import.js +1 -2
  28. package/src/schedule/models/toolbar-model.d.ts +2 -2
  29. package/src/schedule/popups/event-window.js +1 -1
  30. package/src/schedule/renderer/header-renderer.js +6 -4
  31. package/src/schedule/renderer/vertical-view.js +3 -0
  32. package/src/schedule/renderer/view-base.js +8 -4
  33. package/styles/bootstrap-dark.css +236 -147
  34. package/styles/bootstrap-dark.scss +19 -2
  35. package/styles/bootstrap.css +237 -148
  36. package/styles/bootstrap.scss +19 -2
  37. package/styles/bootstrap4.css +239 -153
  38. package/styles/bootstrap4.scss +19 -2
  39. package/styles/bootstrap5-dark.css +229 -144
  40. package/styles/bootstrap5-dark.scss +19 -2
  41. package/styles/bootstrap5.css +229 -144
  42. package/styles/bootstrap5.scss +19 -2
  43. package/styles/fabric-dark.css +234 -146
  44. package/styles/fabric-dark.scss +19 -2
  45. package/styles/fabric.css +234 -146
  46. package/styles/fabric.scss +19 -2
  47. package/styles/fluent-dark.css +229 -142
  48. package/styles/fluent-dark.scss +19 -2
  49. package/styles/fluent.css +229 -142
  50. package/styles/fluent.scss +19 -2
  51. package/styles/fluent2.css +5932 -0
  52. package/styles/fluent2.scss +19 -0
  53. package/styles/highcontrast-light.css +229 -138
  54. package/styles/highcontrast-light.scss +19 -2
  55. package/styles/highcontrast.css +229 -138
  56. package/styles/highcontrast.scss +19 -2
  57. package/styles/material-dark.css +273 -155
  58. package/styles/material-dark.scss +19 -2
  59. package/styles/material.css +285 -156
  60. package/styles/material.scss +19 -2
  61. package/styles/material3-dark.css +278 -154
  62. package/styles/material3-dark.scss +19 -2
  63. package/styles/material3.css +278 -154
  64. package/styles/material3.scss +19 -2
  65. package/styles/recurrence-editor/_bds-definition.scss +0 -1
  66. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +0 -1
  67. package/styles/recurrence-editor/_bootstrap-definition.scss +0 -1
  68. package/styles/recurrence-editor/_bootstrap4-definition.scss +0 -1
  69. package/styles/recurrence-editor/_bootstrap5-definition.scss +0 -1
  70. package/styles/recurrence-editor/_bootstrap5.3-definition.scss +14 -0
  71. package/styles/recurrence-editor/_fabric-dark-definition.scss +0 -1
  72. package/styles/recurrence-editor/_fabric-definition.scss +0 -1
  73. package/styles/recurrence-editor/_fluent-definition.scss +0 -1
  74. package/styles/recurrence-editor/_fluent2-definition.scss +14 -0
  75. package/styles/recurrence-editor/_fusionnew-definition.scss +0 -1
  76. package/styles/recurrence-editor/_highcontrast-definition.scss +0 -1
  77. package/styles/recurrence-editor/_highcontrast-light-definition.scss +0 -1
  78. package/styles/recurrence-editor/_layout.scss +1 -17
  79. package/styles/recurrence-editor/_material-dark-definition.scss +0 -1
  80. package/styles/recurrence-editor/_material-definition.scss +0 -1
  81. package/styles/recurrence-editor/_material3-definition.scss +0 -1
  82. package/styles/recurrence-editor/_tailwind-definition.scss +0 -1
  83. package/styles/recurrence-editor/bootstrap-dark.css +21 -23
  84. package/styles/recurrence-editor/bootstrap.css +21 -23
  85. package/styles/recurrence-editor/bootstrap4.css +22 -23
  86. package/styles/recurrence-editor/bootstrap5-dark.css +22 -23
  87. package/styles/recurrence-editor/bootstrap5.css +22 -23
  88. package/styles/recurrence-editor/fabric-dark.css +19 -22
  89. package/styles/recurrence-editor/fabric.css +19 -22
  90. package/styles/recurrence-editor/fluent-dark.css +22 -23
  91. package/styles/recurrence-editor/fluent.css +22 -23
  92. package/styles/recurrence-editor/fluent2.css +1534 -0
  93. package/styles/recurrence-editor/fluent2.scss +8 -0
  94. package/styles/recurrence-editor/highcontrast-light.css +19 -22
  95. package/styles/recurrence-editor/highcontrast.css +19 -22
  96. package/styles/recurrence-editor/material-dark.css +32 -26
  97. package/styles/recurrence-editor/material.css +32 -26
  98. package/styles/recurrence-editor/material3-dark.css +33 -27
  99. package/styles/recurrence-editor/material3.css +33 -27
  100. package/styles/recurrence-editor/tailwind-dark.css +32 -26
  101. package/styles/recurrence-editor/tailwind.css +32 -26
  102. package/styles/schedule/_bds-definition.scss +0 -15
  103. package/styles/schedule/_bootstrap-dark-definition.scss +4 -19
  104. package/styles/schedule/_bootstrap-definition.scss +4 -19
  105. package/styles/schedule/_bootstrap4-definition.scss +3 -18
  106. package/styles/schedule/_bootstrap5-definition.scss +1 -22
  107. package/styles/schedule/_bootstrap5.3-definition.scss +273 -0
  108. package/styles/schedule/_fabric-dark-definition.scss +4 -17
  109. package/styles/schedule/_fabric-definition.scss +4 -19
  110. package/styles/schedule/_fluent-definition.scss +0 -14
  111. package/styles/schedule/_fluent2-definition.scss +273 -0
  112. package/styles/schedule/_fusionnew-definition.scss +0 -21
  113. package/styles/schedule/_highcontrast-definition.scss +1 -16
  114. package/styles/schedule/_highcontrast-light-definition.scss +1 -16
  115. package/styles/schedule/_layout.scss +83 -130
  116. package/styles/schedule/_material-dark-definition.scss +5 -20
  117. package/styles/schedule/_material-definition.scss +4 -19
  118. package/styles/schedule/_material3-definition.scss +1 -23
  119. package/styles/schedule/_tailwind-definition.scss +0 -16
  120. package/styles/schedule/_theme.scss +14 -2
  121. package/styles/schedule/bootstrap-dark.css +220 -126
  122. package/styles/schedule/bootstrap.css +221 -127
  123. package/styles/schedule/bootstrap4.css +223 -132
  124. package/styles/schedule/bootstrap5-dark.css +213 -123
  125. package/styles/schedule/bootstrap5.css +213 -123
  126. package/styles/schedule/fabric-dark.css +218 -125
  127. package/styles/schedule/fabric.css +218 -125
  128. package/styles/schedule/fluent-dark.css +213 -121
  129. package/styles/schedule/fluent.css +213 -121
  130. package/styles/schedule/fluent2.css +5536 -0
  131. package/styles/schedule/fluent2.scss +16 -0
  132. package/styles/schedule/highcontrast-light.css +213 -117
  133. package/styles/schedule/highcontrast.css +213 -117
  134. package/styles/schedule/icons/_bds.scss +6 -21
  135. package/styles/schedule/icons/_bootstrap-dark.scss +4 -16
  136. package/styles/schedule/icons/_bootstrap.scss +4 -16
  137. package/styles/schedule/icons/_bootstrap4.scss +8 -26
  138. package/styles/schedule/icons/_bootstrap5.3.scss +220 -0
  139. package/styles/schedule/icons/_bootstrap5.scss +7 -22
  140. package/styles/schedule/icons/_fabric-dark.scss +5 -17
  141. package/styles/schedule/icons/_fabric.scss +5 -17
  142. package/styles/schedule/icons/_fluent.scss +7 -22
  143. package/styles/schedule/icons/_fluent2.scss +220 -0
  144. package/styles/schedule/icons/_fusionnew.scss +7 -22
  145. package/styles/schedule/icons/_highcontrast-light.scss +5 -17
  146. package/styles/schedule/icons/_highcontrast.scss +5 -17
  147. package/styles/schedule/icons/_material-dark.scss +5 -17
  148. package/styles/schedule/icons/_material.scss +5 -17
  149. package/styles/schedule/icons/_material3.scss +7 -22
  150. package/styles/schedule/icons/_tailwind.scss +7 -22
  151. package/styles/schedule/material-dark.css +257 -134
  152. package/styles/schedule/material.css +269 -135
  153. package/styles/schedule/material3-dark.css +262 -133
  154. package/styles/schedule/material3.css +262 -133
  155. package/styles/schedule/tailwind-dark.css +223 -124
  156. package/styles/schedule/tailwind.css +223 -124
  157. package/styles/tailwind-dark.css +239 -145
  158. package/styles/tailwind-dark.scss +19 -2
  159. package/styles/tailwind.css +239 -145
  160. package/styles/tailwind.scss +19 -2
  161. package/CHANGELOG.md +0 -1930
package/CHANGELOG.md DELETED
@@ -1,1930 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### Schedule
6
-
7
- #### Bug fixes
8
-
9
- - `#I586530` - The issue with `refreshTemplates` caused alignment issues in resource header has been resolved.
10
-
11
- ## 25.2.4 (2024-05-14)
12
-
13
- ### Schedule
14
-
15
- #### Bug fixes
16
-
17
- - `#I539772` - Appointment drag and drop issue in iPad is fixed.
18
- - `#I522699` - The issue with touch scrolling through appointments, which was caused by interference from the drag and drop and resize feature, has been resolved in touch devices. Drag and resize operations are only enabled after a tap-hold action.
19
- - `#I583762` - The issue with `refreshTemplates` caused alignment issues in date header has been resolved.
20
-
21
- ## 25.2.3 (2024-05-08)
22
-
23
- ### Schedule
24
-
25
- #### Bug fixes
26
-
27
- - `#I582520` - The issue with `scrollToResource` not working in the month view has been resolved.
28
-
29
- ## 25.1.42 (2024-04-30)
30
-
31
- ### Schedule
32
-
33
- #### Bug fixes
34
-
35
- - `#I583674` - An issue where the text for today button was not displayed in the toolbar has been fixed.
36
-
37
- ## 25.1.41 (2024-04-23)
38
-
39
- ### Schedule
40
-
41
- #### Bug fixes
42
-
43
- - `#I569000` - The issue with the Timeslots show difference than the time scale on the day light saving start and end day has been resolved.
44
- - An issue with XSS vulnerability identified in the editor window has been fixed.
45
-
46
- ## 25.1.39 (2024-04-09)
47
-
48
- ### Schedule
49
-
50
- #### Bug fixes
51
-
52
- - `#I556008` - An issue with the reading and restoring the current resource in compact view has been fixed.
53
- - `#I550494` - An issue with appointments overlapping while using `sortComparer` in the timeline views has been fixed.
54
- - `#I549215` - The issue with the `refreshLayout` method causing UI disruptions when utilizing `allowVirtualscrolling` has been resolved.
55
-
56
- ## 25.1.37 (2024-03-26)
57
-
58
- ### Schedule
59
-
60
- #### Bug fixes
61
-
62
- - `#I566544` - An issue with `aria-labelledby` accessibility issue in the recurrence editor has been fixed.
63
- - `#I549259` - An issue where the weekend dates are rendered in the Agenda view after setting up the `showWeekend` property to `false` has been fixed.
64
-
65
- ## 25.1.35 (2024-03-15)
66
-
67
- ### Schedule
68
-
69
- #### New Features
70
-
71
- - `#I511506` - Provided support to prevent the reloading of appointment data source when resource data source changes dynamically by providing an additional boolean parameter `isEventDataRefresh` in the `setResourceCollections` method. To prevent reloading of the appointments you have to send the `isEventDataRefresh` parameter value as `false`.
72
-
73
- ## 24.2.8 (2024-02-27)
74
-
75
- ### Schedule
76
-
77
- #### Bug fixes
78
-
79
- - `#I549187` - An issue with the virtual scroll with `rowAutoHeight` has been resolved.
80
-
81
- ## 24.2.4 (2024-02-06)
82
-
83
- ### Schedule
84
-
85
- #### Bug fixes
86
-
87
- - `#I540139` - The appointment disappearance issue while using the `rowAutoHeight` has been resolved.
88
- - `#I524766` - An issue related to scaling has been fixed.
89
-
90
- ## 24.2.3 (2024-01-31)
91
-
92
- ### Schedule
93
-
94
- #### Bug fixes
95
-
96
- - `#I541680` - An issue related to more indicator in the timeline views has been fixed.
97
-
98
- ## 24.1.41 (2023-12-18)
99
-
100
- ### Schedule
101
-
102
- #### New Features
103
-
104
- - `#I227283`, `#I233208`, `#F170880` - Provided support to customize the scheduler toolbar items using the `toolbarItems` property.
105
- - `#I347220` - Provided the support to control the number of events displayed in a cell in the Month view and Timeline views using the `maxEventsPerRow` property
106
-
107
- #### Bug fixes
108
-
109
- - `#I519049` - An issue related to events are overlapping when they are on same date in vertical year view has been resolved.
110
- - `#F185646` - An issue with page crashes when schedule appointment drag-drops over the calendar has been fixed.
111
- - `#F185139` - An issue related to events are positioned incorrectly when using `firstDayOfWeek` with different time slot intervals has been resolved.
112
- - `#FB47966` - An issue with timezone setting not working for all day events has been fixed.
113
-
114
- ## 23.2.4 (2023-11-20)
115
-
116
- ### Schedule
117
-
118
- #### Bug fixes
119
-
120
- - `#I518285` - An issue related to incorrect start day name on the week header in year view has been resolved.
121
-
122
- ## 23.1.44 (2023-11-07)
123
-
124
- ### Schedule
125
-
126
- #### Bug fixes
127
-
128
- - `#I513168` - An issue related to misplaced events in the print document has been resolved.
129
-
130
- ## 23.1.40 (2023-10-10)
131
-
132
- ### Schedule
133
-
134
- #### Bug fixes
135
-
136
- - `#I184692` - An issue with the date navigation while clicking on the month date on mobile mode has been fixed.
137
- - `#I504010` - The console error occurs when dragging events outside of the Scheduler area has been fixed.
138
-
139
- ## 23.1.39 (2023-10-04)
140
-
141
- ### Schedule
142
-
143
- #### Bug fixes
144
-
145
- - `#I503155` - Resolved an accessibility concern by including the necessary form labels in the Scheduler editor window.
146
-
147
- ## 23.1.38 (2023-09-26)
148
-
149
- ### Schedule
150
-
151
- #### Bug fixes
152
-
153
- - `#I501151` - An issue where the `eventDoubleClick` event is not triggering has been fixed.
154
-
155
- ## 23.1.36 (2023-09-15)
156
-
157
- ### Schedule
158
-
159
- #### Features
160
-
161
- - `#I393657` - Provided on-demand data loading support that allows users to retrieve events from remote services for the current view port alone and retrieve the remaining data on demand while scrolling, which improves the performance and usability of the Scheduler component.
162
- - `#I397280`, `#I296716`, `#F184285`, `#FB37717` - Provided `virtualScrollStart` and `virtualScrollStop` event support to notify the resource virtual scrolling actions of Scheduler.
163
- - `#I339243`, `#I365629`, `#F174284` - Provided support to customize the header and footer of editor window.
164
-
165
- #### Bug fixes
166
-
167
- - `#F184224` - An issue with start and end date query parameters passed incorrectly, when timezone is applied for scheduler has been fixed.
168
- - `#I499207` - An issue with quick popup not opens on selected cell, when `allowMultiRowSelection` property disabled has been fixed.
169
-
170
- ## 22.2.12 (2023-09-05)
171
-
172
- ### Schedule
173
-
174
- #### Bug fixes
175
-
176
- - `#I492172` - An issue with recurrence exception not calculated based on scheduler timezone has been fixed.
177
- - `#I490434` - An issue with current time indicator positioned wrongly when header rows is applied in timeline views has been fixed.
178
- - `#I497178` - An issue with quick popup opens for unselected resource cells has been fixed.
179
-
180
- ## 22.2.11 (2023-08-29)
181
-
182
- ### Schedule
183
-
184
- #### Bug fixes
185
-
186
- - `#I488001` - An issue where the description field of an ICS file was not being parsed correctly upon import into the Schedule has been fixed.
187
-
188
- ## 22.2.5 (2023-07-27)
189
-
190
- ### Schedule
191
-
192
- #### Bug fixes
193
-
194
- - `#I480473` - An issue with "Role not inside the required context" accessibility issue in the Schedule component's recurrence editor has been fixed.
195
- - `#I474091` - The issue of duplicate events being created after changing the recurrence of certain events has been fixed.
196
- - `#I478902` - Performance issue in calculating scrollbar width has been fixed.
197
-
198
- ## 22.1.38 (2023-07-11)
199
-
200
- ### Schedule
201
-
202
- #### Bug fixes
203
-
204
- - `#F182714` - An issue with Escape key will prevent the cell selection when `allowInline` property enabled has been fixed.
205
-
206
- ## 22.1.34 (2023-06-21)
207
-
208
- ### Schedule
209
-
210
- #### New Features
211
-
212
- - `#I438319` - Provided an option to customize the recurrence end type which allows users to tailor the recurrence editor to their unique needs and preferences.
213
-
214
- #### Bug fixes
215
-
216
- - `F182696` - An issue with Keyboard scroll behaviour not working has been fixed.
217
- - `I470178` - An issue with Edit occurrence appointment not rescheduled properly and shows occurrence alert has been fixed.
218
- - `#I182714` - Resolved the issue where pressing the `Escape` key while navigating the scheduler with the keyboard would return to the previously selected cell.
219
-
220
- ## 21.2.10 (2023-06-13)
221
-
222
- ### Schedule
223
-
224
- #### Bug fixes
225
-
226
- - `#I464944` - An issue with time indicator rendered in wrong position when `startHour` and `endHour` property applied has been fixed.
227
-
228
- ## 21.2.9 (2023-06-06)
229
-
230
- ### Schedule
231
-
232
- #### Bug fixes
233
-
234
- - `#I461489` - An issue with the dragging appointment is flickering on the topmost region has been fixed.
235
- - `#I464535` - Fixed an issue where the visible date header name in the Schedule did not match the aria-label name, leading to discrepancies in the accessibility checker.
236
- - `#I459642` - An issue with Appointment end date is wrong in `popupOpenEventArgs` has been fixed.
237
-
238
- ## 21.2.6 (2023-05-23)
239
-
240
- ### Schedule
241
-
242
- #### Bug fixes
243
-
244
- - `#I182303` - An issue with where the current date was not indicated in the agenda view with resource has been fixed.
245
-
246
- ### Schedule
247
-
248
- #### Bug fixes
249
-
250
- - `#I459507` - An issue with the following events option not being displayed while editing the edited occurrence of the recurrence series has been fixed.
251
-
252
- ## 21.2.5 (2023-05-16)
253
-
254
- ### Schedule
255
-
256
- #### Bug fixes
257
-
258
- - `#I459154` - An issue with Schedule performance while rendering large set all-day appointments in vertical views has been fixed.
259
-
260
- ## 21.2.4 (2023-05-09)
261
-
262
- ### Schedule
263
-
264
- #### Bug fixes
265
-
266
- - `#I457705` - An issue with appointment not dropped on target cell when start and end time is same has been fixed.
267
- - `#I457928` - An issue with the appointment misalignment has been fixed.
268
-
269
- ## 21.1.41 (2023-04-18)
270
-
271
- ### Schedule
272
-
273
- #### Bug fixes
274
-
275
- - `#I449384` - An issue with the numeric textbox inside the `editorTemplate` has been fixed.
276
- - `#I454841`, `#I455215` - An issue with the appointment subject, quick info popup subject, and description values doesn't show in HTML format has been fixed.
277
- - `#I451218` - An issue with the clone element was hidden while dragging when the `eventDragArea` property is enabled has been fixed.
278
-
279
- ## 21.1.39 (2023-04-11)
280
-
281
- ### Schedule
282
-
283
- #### Bug fixes
284
-
285
- - `#I425939` - Schedule virtual scrolling appointment rendering performance improved.
286
- - `#F181250` - Schedule layout rendering performance improved with `timezone` property.
287
- - `#I328355`, `#I449137` - Provided support to bind methods in `JS` way for the Schedule events in the `print` method `printOptions`.
288
-
289
- ## 21.1.38 (2023-04-04)
290
-
291
- ### Schedule
292
-
293
- #### Bug fixes
294
-
295
- - `#I448740` - An issue with the current date styles in month agenda view has been fixed.
296
- - `#I445875` - An issue with the scheduler not rendering the all more indicators while resizing the browser window at specific resolutions has been fixed.
297
-
298
- ## 21.1.35 (2023-03-23)
299
-
300
- ### Schedule
301
-
302
- #### New Features
303
-
304
- - `#I324269`, `#I347160` - Provided support to display multi month event as single event in vertical orientation of timeline year view.
305
- - `#I419677` - Provided the support to sanitize the appointment inputs, improving the security of the Scheduler component.
306
- - `#I425713` - Provided in-built filter support to the Scheduler component, allowing users to easily filter events when requesting data from the server.
307
- - `#FB40709` - Provided `generateEventOccurrences` public method to retrieve all the occurrences from the series.
308
- - `#I423939` - Provided support to render the schedule timeline views without horizontal scrollbar.
309
-
310
- #### Bug fixes
311
-
312
- - `#I442920` - An issue with appointments misaligned in timeline year view with `ignoreWhiteSpace` property has been fixed.
313
-
314
- ## 20.4.53 (2023-03-07)
315
-
316
- ### Schedule
317
-
318
- #### Bug fixes
319
-
320
- - `#I441823, F180833` - An issue with a script error while customizing the recurrence editor repeat type option in the Schedule editor has been fixed.
321
-
322
- ## 20.4.52 (2023-02-28)
323
-
324
- ### Schedule
325
-
326
- #### Bug fixes
327
-
328
- - `#I440832` - An issue with drag clone event were hidden, when dragging multiple appointments with `startHour` and `endHour` has been fixed.
329
- - `#I441311` - An issue with `getSelectedElements` public method return the selected cells in wrong order has been fixed.
330
-
331
- ## 20.4.51 (2023-02-21)
332
-
333
- ### Schedule
334
-
335
- #### Bug fixes
336
-
337
- - `#I438207` - An issue with `select` event not invoked on cell selection through keyboard navigation has been fixed.
338
-
339
- ## 20.4.49 (2023-02-07)
340
-
341
- ### Schedule
342
-
343
- #### Bug fixes
344
-
345
- - `#I430344` - An issue with the resource id values for added records and changed records were incorrect when the `allowMultiple` property for schedule resources was set to true has been fixed.
346
-
347
- ## 20.4.48 (2023-02-01)
348
-
349
- ### Schedule
350
-
351
- #### Bug fixes
352
-
353
- - `#I422532` - An issue with swiping animation is slow on date navigation in iPad device has been fixed.
354
- - `#I426228` - An issue with drag and drop with timeline view header rows has been fixed.
355
-
356
- ## 20.4.44 (2023-01-18)
357
-
358
- ### Schedule
359
-
360
- #### Bug fixes
361
-
362
- - `#I414149` - An issue with editor window not open in iPad device has been fixed.
363
- - `#I425181` - An issue with wrongly shown the occurrence alert while editing title of single occurrence of daily recurrence event has been fixed.
364
- - `#I427296` - An issue with wrongly shown the occurrence alert while editing the date of single occurrence of weekly recurrence event has been fixed.
365
-
366
- ## 20.4.43 (2023-01-10)
367
-
368
- ### Schedule
369
-
370
- #### Bug fixes
371
-
372
- - `#I425940` - An issue with adding an aria-pressed attribute to the appointment has been fixed.
373
- - `#I427181` - The issue with the schedule tooltip displaying start and end times in 12 hour format when the schedule is in 24 hour format has been fixed.
374
-
375
- ## 20.4.42 (2023-01-04)
376
-
377
- ### Schedule
378
-
379
- #### Bug fixes
380
-
381
- - `#I425268` - An issue with drag and drop flickering with `eventDragArea` in timeline views has been fixed.
382
- - `#I424662` - An issue with appointment resizing in month view with scrollbar has been fixed.
383
-
384
- ## 20.4.38 (2022-12-21)
385
-
386
- ### Schedule
387
-
388
- #### New Features
389
-
390
- - `#I384604` - Provided custom workdays support when resources are grouped by date.
391
- - `#I394207` - Provided `closeTooltip` method to close the appointment tooltip programmatically.
392
- - `#I399939` - Provided `dateRangeTemplate` template to customize the header date range in scheduler.
393
-
394
- ## 20.3.58 (2022-11-22)
395
-
396
- ### Schedule
397
-
398
- #### Bug fixes
399
-
400
- - `#F178747` - An issue with Appointments positioning when navigate to the next date via swiping in mobile mode has been fixed.
401
-
402
- ## 20.3.57 (2022-11-15)
403
-
404
- ### Schedule
405
-
406
- #### Bug fixes
407
-
408
- - `#I415847` - An issue with Edit recurrence series to greater than its end date has been fixed.
409
- - `#I415323` - An issue with timeline month view appointment flickers on initial resizing has been fixed.
410
-
411
- ## 20.3.56 (2022-11-08)
412
-
413
- ### Schedule
414
-
415
- #### Bug fixes
416
-
417
- - `#F178302` - An issue with being unable to inline edit when using `eventTemplate` has been fixed.
418
- - `#F178112` - An issue with "Misalignment occurring on zoom-in zoom-out with the scheduler" has been fixed
419
-
420
- ## 20.3.52 (2022-10-26)
421
-
422
- ### Schedule
423
-
424
- #### Bug fixes
425
-
426
- - `#F177962` - An issue with displaying yearly recurrence event has been fixed.
427
- - `#I407566` - An issue with Importing exported ICS file with the edited recurrence event causes issue while editing the recurrence event has been fixed.
428
- - `#F411508` - The issue Error throws when resources with no child is selected in the Editor window has been fixed.
429
- - `#I411253` - Scheduler performance issue in virtual scrolling has been fixed.
430
- - `#I412237` - An issue with Delete action through keyboard not working on Schedule on the MAC OS has been fixed.
431
- - `F178167` - An issue with navigation actions not working while performing swipe on the appointments in mobile mode has been fixed.
432
-
433
- ## 20.3.49 (2022-10-11)
434
-
435
- ### Schedule
436
-
437
- #### Bug fixes
438
-
439
- - `#I407566` - An issue with Importing exported ICS file with the edited recurrence event causes issue while editing the recurrence event has been fixed.
440
-
441
- ## 20.3.47 (2022-09-29)
442
-
443
- ### Schedule
444
-
445
- #### New Features
446
-
447
- - `#I329117` - Provided option to disable the date navigation via touch swipe.
448
- - `#F171009`, `#FB3560`, `#FB30983`, `#FB31560`, `#FB36386` - Provided virtual scrolling support to Vertical Day, Week, and Month views.
449
- - Provided cell template, day header template and month header template support for Year view.
450
-
451
- #### Bug fixes
452
-
453
- - `#I406122` - An issue with Recurrence appointment rendered after the end time on DST timezone has been fixed.
454
-
455
- ## 20.2.50 (2022-09-20)
456
-
457
- ### Schedule
458
-
459
- #### Bug fixes
460
-
461
- - `#I405416` - An issue with next date navigation arrow shown when the upcoming date is greater than `maxDate` has been fixed.
462
-
463
- ## 20.2.43 (2022-08-08)
464
-
465
- ### Schedule
466
-
467
- #### Bug fixes
468
-
469
- - `#I392060` - An issue with `scrollTo` method not working in timeline views has been fixed.
470
-
471
- ## 20.2.40 (2022-07-26)
472
-
473
- ### Schedule
474
-
475
- #### Bug fixes
476
-
477
- - `#I392060` - An issue with Appointments start and end time were changed on schedule property change has been fixed.
478
-
479
- ## 20.2.38 (2022-07-12)
480
-
481
- ### Schedule
482
-
483
- #### Bug fixes
484
-
485
- - `#F172936` - An issue with Form validator instance not available in `popupOpen` event of Scheduler has been fixed.
486
- - `#F175741` - An issue with UID of the appointments varies every time while exporting appointments in ICS file has been fixed.
487
- - `#I379499` - An issue with Recurrence appointments start and end times are not changed based on DST time zone has been fixed.
488
-
489
- ## 20.2.36 (2022-06-30)
490
-
491
- ### Schedule
492
-
493
- #### New Features
494
-
495
- - `#I357693`, `#I385560` - Provided a public method `openQuickInfoPopup` to open the quick popup programmatically.
496
- - `#I307933` - Provided support to specify custom separator when exporting Scheduler events to CSV export.
497
-
498
- #### Bug Fixes
499
-
500
- - `#I385411` - An issue with Weekly recurrence appointments not shown in day view has been fixed.
501
-
502
- ## 20.1.61 (2022-06-21)
503
-
504
- ### Schedule
505
-
506
- #### Bug Fixes
507
-
508
- - `#I380532` - An issue with Multiple appointments dragged while performing drag action with a single appointment has been fixed.
509
- - `#I380576` - An issue with drag appointment clone position with enabled `rowAutoHeight` has been fixed.
510
- - `#I384326` - An issue with html tag as appointment subject in quick popup header has been fixed.
511
- - `#I383234` - An issue with `scrollTo` method not working with date when enabled group `byDate` has been fixed.
512
- - `#F174691` - An issue with header misalignment in month view on safari browser has been fixed.
513
-
514
- ## 20.1.57 (2022-05-24)
515
-
516
- ### Schedule
517
-
518
- #### Bug Fixes
519
-
520
- - `#I379346` - An issue with appointments rendered in start and end hour range in vertical views has been fixed.
521
- - `#I379197` - An issue with normal appointment rendered in all day row in DST time zone has been fixed.
522
-
523
- ## 20.1.55 (2022-05-12)
524
-
525
- ### Schedule
526
-
527
- #### Bug Fixes
528
-
529
- - `#I374675` - The appointment border maintained after deselection on multiple appointment selections has been fixed.
530
- - `#I373707` - An issue with appointments rendered in the min-max date range in vertical views has been fixed.
531
-
532
- ## 20.1.50 (2022-04-19)
533
-
534
- ### Schedule
535
-
536
- #### Bug Fixes
537
-
538
- - `#I373678` - An issue with the recurrence appointment time change in the DST time zone has been fixed.
539
- - `#I372043` - An issue with the appointment rendering performance of the month view has been fixed.
540
- - `#I373179` - The Schedule `exportToICalendar` method throws a script error on exporting events issue has been fixed.
541
- - `#I373707` - An issue with the appointments in the min-max date range not rendered in the month view has been fixed.
542
-
543
- ## 20.1.48 (2022-04-12)
544
-
545
- ### Schedule
546
-
547
- #### Bug Fixes
548
-
549
- - `#F173985` - An issue with duplicate cells rendered when the time scale interval set as 1440 has been fixed.
550
-
551
- ## 20.1.47 (2022-04-04)
552
-
553
- ### Schedule
554
-
555
- #### New Features
556
-
557
- - `#I305258`, `#FB20522`, `#FB20233` - Provided virtual scrolling support for timeline year view with vertical orientation.
558
-
559
- #### Bug Fixes
560
-
561
- - `#I368002, #I369932` - A issue with cell height not updated property based on appointment rendering while row auto height enabled has been fixed.
562
- - `#I368806` - An issue with an incorrect end date in the editor when using `openEditor` method has been fixed.
563
- - `#I367110` - An issue with more indicator count value is wrong in month view has been fixed.
564
- - `#I370378` - An issue with the wrong count of occurrences rendered when clear and set up until date value again has been fixed.
565
- - `#F172905` - An issue with scroll position not maintained for timeline year and timeline month views has been fixed.
566
-
567
- ## 19.4.50 (2022-02-08)
568
-
569
- ### Schedule
570
-
571
- #### Bug Fixes
572
-
573
- - `#I362813` - An issue with appointment start and end time changes on each schedule layout resize action while using `timezone` property has been fixed.
574
- - `#I363018` - An issue with event template content is empty after performing CRUD action with resource has been fixed.
575
-
576
- ## 19.4.47 (2022-01-25)
577
-
578
- ### Schedule
579
-
580
- #### Bug Fixes
581
-
582
- - `#I361305` - A performance issue while loading more events in the Timeline views has been fixed.
583
- - `#I361135` - An issue with improper argument data received in the `eventRendered` event in each view has been fixed.
584
- - `#I363266` - An issue with the more popup window has truncated at bottom of the schedule in month view has been fixed.
585
-
586
- ## 19.4.43 (2022-01-18)
587
-
588
- ### Schedule
589
-
590
- #### Bug Fixes
591
-
592
- - `#F171650` - An issue with localized text is not applied for the week numbers tooltip in year view has been fixed.
593
-
594
- ## 19.4.42 (2022-01-11)
595
-
596
- ### Schedule
597
-
598
- #### Bug Fixes
599
-
600
- - `#I360126` - Timeline views appointment misalignment issue while work cells width reduced has been fixed.
601
-
602
- ## 19.4.41 (2022-01-04)
603
-
604
- ### Schedule
605
-
606
- #### Bug Fixes
607
-
608
- - `#I357890` - An issue with work cells misalignment in the timeline month view has been fixed.
609
- - `#FB31401` - An issue with today button navigating issue only in the `MonthAgenda` view issue has been fixed.
610
- - `#FB30967` - An issue while drag and drop an event with `eventDragArea` has been fixed.
611
-
612
- ## 19.4.40 (2021-12-28)
613
-
614
- ### Schedule
615
-
616
- #### Bug Fixes
617
-
618
- - `#I353817` - An issue with all-day region scrolling issue only in the Mac device has been fixed.
619
-
620
- ## 19.4.38 (2021-12-17)
621
-
622
- ### Schedule
623
-
624
- #### New Features
625
-
626
- - `#I256450`, `#I256493`, `#I341525` - Provides support for flexible month view that starts from the beginning of the week the displayed date falls in. Also, users can set the number of weeks to be displayed in the Month view.
627
- - `#FB9963`, `#I331086` - Provided an option to customize the header names when the Scheduler is exported to Excel.
628
- - `#I276542`, `#F169844` - Provided support to set the minimum event duration for appointments to make the event subject easier to read.
629
- - `#I335888`, `#F167194`, `#F167235`, `#F169012`, `#F169593`, `#F169647` - Provides accessibility support for timeline year views to select multiple cells for actions.
630
-
631
- #### Bug Fixes
632
-
633
- - `#I357194` - An issue while slower the performance of the schedule, while drag and drop the event with `eventTemplate` has been fixed.
634
-
635
- ## 19.3.55 (2021-11-23)
636
-
637
- ### Schedule
638
-
639
- #### Bug Fixes
640
-
641
- - `#I347217` - An issue while using `getRecurrenceDates` method in the weekly rule option has been fixed.
642
-
643
- ## 19.3.53 (2021-11-12)
644
-
645
- ### Schedule
646
-
647
- #### New Features
648
-
649
- - `#I224286`, `#I224730`, `#I316683`, `#I321325`, `#I331265`, `#I331820`, `#I338907`, `#I342102`, `#F169564`, `#F169824`, `#F169024` - Provided option to render the spanned events greater than 24 hours in either `AllDayRow` region or `TimeSlot` region.
650
- - `#I339786` - Provided localization support for timezone collections which are displayed in the editor window.
651
-
652
- ## 19.3.48 (2021-11-02)
653
-
654
- ### Schedule
655
-
656
- #### Bug Fixes
657
-
658
- - `#F158202` - The `getCurrentViewEvents` method not returns current view events in Agenda view has been fixed.
659
- - `#I343356` - An issue while using two dynamic validation error message for the scheduler field has been fixed.
660
- - `#I345316` - An issue while saving an event dynamically using `saveEvent` method only with `timezone` property for the scheduler has been fixed.
661
- - `#F169453` - An issue with the horizontal scroll position in the timeline month, while dragging or resizing an event has been fixed.
662
- - `#I342117` - An issue with virtual scrolling down not happening issue in Agenda view mobile mode has been fixed.
663
-
664
- ## 19.3.46 (2021-10-19)
665
-
666
- ### Schedule
667
-
668
- #### Bug Fixes
669
-
670
- - `#I344571` - An alignment issue between the resource cells and work cells in timeline year has been fixed.
671
- - `#FB29199` - Dragging an event from one month to another throws an exception in month view has been fixed.
672
- - `#I344682` - An issue with virtual up-scrolling while enabling the `rowAutoHeight` property has been fixed.
673
-
674
- ## 19.3.44 (2021-10-05)
675
-
676
- ### Schedule
677
-
678
- #### Bug Fixes
679
-
680
- - `#FB29036` - An issue with the `renderCell` event arguments as `resourceGroupCells` has been fixed in the timeline year view with resources.
681
- - `#I339839` - An issue with the scheduler resize action is not working properly in timeline month has been fixed.
682
- - `#F168909` - The scheduler agenda view throws script error on multilevel resources grouping has been fixed.
683
-
684
- ## 19.3.43 (2021-09-30)
685
-
686
- ### Schedule
687
-
688
- #### New Features
689
-
690
- - `#I316891`, `#I328879`, `#I331265`, `#I335777`, `#I339302`, `#F165491` - Provided support to sort appointments by priority instead of time.
691
- - `#I242605`, `#F160122`, `#F165334` - Provided public method for Scheduler to refresh the Scheduler layout without re-render.
692
- - `#I314842`, `#I320731` - Provided public method for Scheduler to refresh the given templates.
693
- - `#FB24252` - Provided template support for header indent cells.
694
-
695
- #### Bug Fixes
696
-
697
- - `#I333664` - An issue with the dragging between two Schedulers has been fixed.
698
- - `#I340348` - An issue with opening the editor window in RTL mode has been fixed.
699
- - `#I342117` - An issue with today button navigation in Agenda view and scrolling down not happening issue has been fixed.
700
- - `#F168358` - An issue with the "delete icon is not disabled in mobile mode" has been fixed.
701
- - `#I340332` - An issue with the events rendering performance in vertical views has been fixed.
702
- - `#I342489` - An issue with identify the clicked button on `popupClose` event has been fixed by providing `event` option on `PopupCloseEventArgs`.
703
-
704
- ## 19.2.59 (2021-08-31)
705
-
706
- ### Schedule
707
-
708
- #### New Features
709
-
710
- - `#I242605`, `#F160122`, `#F165334` - Provided public method for Scheduler to refresh the Scheduler layout without re-render.
711
- - `#I314842`, `#I320731` - Provided public method for Scheduler to refresh the given templates.
712
-
713
- #### Bug Fixes
714
-
715
- - `#I339839` - An issue with the scheduler resize action is not working properly in timeline views has been fixed.
716
- - `#I338473` - An issue with the scheduler `showWeekend` property set to false appointments missing has been fixed.
717
- - `#I340348` - An issue with opening the editor window in RTL mode has been fixed.
718
- - `#I342117` - An issue with today button navigation in Agenda view has been fixed.
719
- - `#I340332` - An issue with the scheduler performance in Vertical views has been fixed.
720
-
721
- ## 19.2.56 (2021-08-17)
722
-
723
- ### Schedule
724
-
725
- #### Bug Fixes
726
-
727
- - `#I334925` - An issue with the longer appointments in timeline year view UI has been resolved.
728
-
729
- ## 19.2.55 (2021-08-11)
730
-
731
- ### Schedule
732
-
733
- #### Bug Fixes
734
-
735
- - `#I337733` - An issue with the scheduler events overlapping when start and end times were the same has been resolved.
736
-
737
- ## 19.2.51 (2021-08-03)
738
-
739
- ### Schedule
740
-
741
- #### Bug Fixes
742
-
743
- - `#F167351` - An issue with the scheduler quick popup closes when using multi-select in the popup content has been fixed.
744
-
745
- ## 19.2.49 (2021-07-27)
746
-
747
- ### Schedule
748
-
749
- #### Bug Fixes
750
-
751
- - `#I331086` - An issue with the drag and drop the spanned events in vertical views has been fixed.
752
- - `#I336108` - An issue with the scheduler import of recurring events has been fixed.
753
-
754
- ## 19.2.47 (2021-07-13)
755
-
756
- ### Schedule
757
-
758
- #### Bug Fixes
759
-
760
- - `#I333860, #I333664` - An issue with the external drag between two scheduler has been fixed.
761
- - `#F166305` - An issue with dynamically changed `minDate` and `maxDate` property in react scheduler has been fixed.
762
- - `#F166752` - An issue with drag and drop doesn't work when enabled the desktop mode in mobile devices has been fixed.
763
- - `#I331086` - An issue with the drag and drop the spanned events in vertical views has been fixed.
764
-
765
- ## 19.2.46 (2021-07-06)
766
-
767
- ### Schedule
768
-
769
- #### Bug Fixes
770
-
771
- - `#I332366` - An issue with the toolbar popup is not open properly when multiple schedules are rendered on a single page has been fixed.
772
-
773
- ## 19.2.44 (2021-06-30)
774
-
775
- ### Schedule
776
-
777
- #### New Features
778
-
779
- - Provided option to set the custom months count in year views.
780
-
781
- #### Bug Fixes
782
-
783
- - `#FB25227` - An issue with the scheduler resize action is not working in timeline views has been fixed.
784
- - `#I331501` - An issue with the scheduler height is not responsive related to the parent container has been fixed.
785
-
786
- ## 19.1.69 (2021-06-15)
787
-
788
- ### Schedule
789
-
790
- #### Bug Fixes
791
-
792
- - `#I331194` - An issue with localization for form-validator is not working has been fixed.
793
- - `#I331513` - An issue with add icon shows on mobile when disabled the `allowAdding` property has been fixed.
794
-
795
- ## 19.1.67 (2021-06-08)
796
-
797
- ### Schedule
798
-
799
- #### Bug Fixes
800
-
801
- - `#I327333` - An issue with the scheduler current time indicator position not maintained has been fixed.
802
- - `#I329599` - An issue with the scheduler `eventRendered` event in agenda view has been fixed.
803
- - `#F165707` - An issue with the external drag between two scheduler has been fixed.
804
- - `#I330676` - An issue with the scheduler more popup is not updated when deleting the event in year view has been fixed.
805
- - `#I330946` - An issue with the scheduler keyboard interaction when the `readonly` property is enabled has been fixed.
806
-
807
- ## 19.1.66 (2021-06-01)
808
-
809
- ### Schedule
810
-
811
- #### Bug Fixes
812
-
813
- - `#F165550` - An issue with script error throws while dragging the scheduler events in IE11 has been fixed.
814
-
815
- ## 19.1.65 (2021-05-25)
816
-
817
- ### Schedule
818
-
819
- #### New Features
820
-
821
- - Provided public method to select the resources programmatically based on group index in mobile mode.
822
-
823
- #### Bug Fixes
824
-
825
- - `#I317799` - An issue with memory leak while performing navigation action has been fixed.
826
- - `#F165261` - An issue with scheduler dates are not translated based on locale has been fixed.
827
- - `#FB25480` - An issue with the scheduler mobile mode when the `readonly` property is enabled has been fixed.
828
-
829
- ## 19.1.63 (2021-05-13)
830
-
831
- ### Schedule
832
-
833
- #### New Features
834
-
835
- - Provided scrolling support for all day row when loading huge events.
836
- - Provided the print option support to print the schedule in a customized way.
837
- - Provided option to set the different first month in year view.
838
- - Provided template support for date header in year views.
839
-
840
- #### Bug Fixes
841
-
842
- - `#I325602`: An issue with resizing the appointment to last cell is not working has been fixed.
843
- - `#I315877` - An issue with the scheduler fast dragging in timeline views has been resolved.
844
-
845
- ## 19.1.59 (2021-05-04)
846
-
847
- ### Schedule
848
-
849
- #### Bug Fixes
850
-
851
- - `#FB23548` - An issue with Keyboard Interaction with Virtual Scrolling has been fixed.
852
- - `#I323778` - An issue with Scheduler Accessibility has been fixed.
853
-
854
- ## 19.1.58 (2021-04-27)
855
-
856
- ### Schedule
857
-
858
- #### Bug Fixes
859
-
860
- - `#I324040` - An issue with the scheduler multiple appointment selection in IOS device has been resolved.
861
- - `#I324529, #I323448` - An issue with deleting the entire recurrence events with resources has been resolved.
862
- - `#FB23906, #FB23902` - An issue with "Scheduler causing focus loss for text inputs in Android device" has been fixed.
863
- - `#FB23931` - An issue with "Scheduler stealing focus on window resize" has been fixed.
864
- - `#I313715` - An issue with script error throws while resizing the scheduler events has been fixed.
865
- - `#FB24226` - An issue with the scheduler alert message when drag the event in series has been fixed.
866
-
867
- ## 19.1.57 (2021-04-20)
868
-
869
- ### Schedule
870
-
871
- #### Bug Fixes
872
-
873
- - `#I312919` - An issue with the scheduler performance with resources has been resolved.
874
-
875
- ## 19.1.56 (2021-04-13)
876
-
877
- ### Schedule
878
-
879
- #### Bug Fixes
880
-
881
- - `#FB23907` - An issue with the "Scheduler throws the console errors in Android device" has been fixed.
882
- - `#F161048` - An issue with Scheduler quick popup rendered twice when the `quickInfoOnSelectionEnd` property is enabled has been fixed.
883
- - `#I320954` - An issue with the scheduler rendered twice with a different timezone has been fixed.
884
- - `#I319812` - An issue with the appointment is not created properly in Timeline Year view has been fixed.
885
- - `#I320915` - An issue with Scheduler events height is not rendered properly in the DST timezone has been fixed.
886
- - `#FB23548` - An issue with Keyboard Interaction with Virtual Scrolling has been fixed.
887
- - `F159057` - An issue with the appointment was not shown correctly in the UI in `TimelineMonth` view has been fixed.
888
-
889
- ## 19.1.55 (2021-04-06)
890
-
891
- ### Schedule
892
-
893
- #### Bug Fixes
894
-
895
- - `#F17228` - An issue with scheduler input field focus not working in iPad device with external keyboard has been fixed.
896
- - `#I317983` - An issue with the height of the `TimelineMonth` view is not properly applied when the `rowAutoHeight` property is enabled with scheduler height `auto` has been fixed.
897
- - `#I321711` - Duplicate events rendered in year view of schedule issue has been fixed.
898
- - `#I320945` - An issue with scheduler multiple cell selection by holding shift and mouse click throws script error has been fixed.
899
-
900
- ## 19.1.54 (2021-03-30)
901
-
902
- ### Schedule
903
-
904
- #### New Features
905
-
906
- - **Multiple events drag and drop** - This feature allows to select multiple events and reschedule them quickly by drag-and-drop. Multiple selections can be done by pressing the CTRL key with a click.
907
- - **Time Format** - This feature allows users to set `24-hour` or `12-hour` time formats in the scheduler. By default, the time format applies from the schedule's current culture configuration.
908
-
909
- ### Recurrence Editor
910
-
911
- #### Breaking Changes
912
-
913
- - The following properties type was changed.
914
-
915
- | Property | Previous Type | Current Type |
916
- |----------|---------------|--------------------------------|
917
- | `selectedType` | `anonymous` | `int` |
918
- | value | `anonymous` | `string` |
919
-
920
- ## 18.4.49 (2021-03-23)
921
-
922
- ### Schedule
923
-
924
- #### Bug Fixes
925
-
926
- - `#F22773` - An issue with editor freezes when saving a task to repeat yearly on the last day of a month has been fixed.
927
- - `#F163215` - An issue with one day block event renders for two days has been fixed.
928
- - `#I316945` - An issue with recurrence events are not deleted properly in overview sample has been fixed.
929
- - `#I317560` - An issue with Schedule events getting overlapped issue has been fixed.
930
- - `#I313557` - An issue with scheduler resource header when enabled `rowAutoHeight` and `height` properties has been fixed.
931
- - `#317799` - An issue with memory leak in Scheduler has been fixed.
932
- - `#313715,320461` - An issue with script error throws while fast dragging of scheduler events has been fixed.
933
-
934
- ## 18.4.48 (2021-03-16)
935
-
936
- ### Schedule
937
-
938
- #### Bug Fixes
939
-
940
- - `#I313966` - An issue with scheduler toolbar popup items are hidden in iPhone has been fixed.
941
- - `#I313459` - An issue with scheduler content width is not properly adjusted while loading large number of resources in IOS device has been fixed.
942
- - `#I315617` - An issue with scheduler `refreshDataManager` method invokes before active view has been fixed.
943
-
944
- ## 18.4.47 (2021-03-09)
945
-
946
- ### Schedule
947
-
948
- #### Bug Fixes
949
-
950
- - `#I303694` - An issue with scheduler toolbar items are not rendered as mobile view in iPad has been fixed.
951
-
952
- ## 18.4.46 (2021-03-02)
953
-
954
- ### Schedule
955
-
956
- #### Bug Fixes
957
-
958
- - `#I306554` - Events are overlapping each other if multiple appointments having duration less than a day in same cell in year view issue has been fixed.
959
- - `#I292642` - An issue with today date is not selected properly in header calendar with different timezone has been fixed.
960
- - `#I315273` - An issue with clone element position place is mismatched while perform resize action with different resize interval has been fixed.
961
- - `#I316544` - An issue with locale word are not displayed in all day row expand and collapse section has been fixed.
962
- - `#I315617, #I315568` - An issue with script error throws while refresh the scheduler before loads the active view has been fixed.
963
- - `#I315462` - An issue with appointments are not rendered when removing the resource dynamically has been fixed.
964
- - `#F162676` - An issue with resource and content area gets misaligned when `rowAutoHeight` is enabled in virtual scrolling has been fixed.
965
-
966
- ## 18.4.44 (2021-02-23)
967
-
968
- ### Schedule
969
-
970
- #### Bug Fixes
971
-
972
- - `#I314589` - An issue with week number not shown properly in timeline views has been fixed.
973
-
974
- ## 18.4.42 (2021-02-09)
975
-
976
- ### Schedule
977
-
978
- #### Bug Fixes
979
-
980
- - `#I312058` - An issue with Appointments not rendered in vertical timeline year view issue has been fixed.
981
- - `#I310882` - An issue with daily recurring event not able to create for 24 hours has been fixed.
982
-
983
- ## 18.4.41 (2021-02-02)
984
-
985
- ### Schedule
986
-
987
- #### New Features
988
-
989
- - `#304701`, `#305038` - Provided the persistence support for scroll bar position.
990
-
991
- #### Bug Fixes
992
-
993
- - `#I309044` - An issue with year view months rendered incorrectly issue has been fixed.
994
- - `#I312201` - An issue with Scheduler throws script error from Current time indicator has been fixed.
995
-
996
- ## 18.4.35 (2021-01-19)
997
-
998
- ### Schedule
999
-
1000
- #### Bug Fixes
1001
-
1002
- - `#I306474` - An issue when `rowAutoHeight` is enabled the events are overlapping to each other in month view issue has been fixed.
1003
- - `#I309996` - An issue with `resouceHeaderTemplate` is not rendering, while navigating the date via swipe actions has been fixed.
1004
- - `F161271` - An issue with script errors throws when editing the block appointments manually using open editor has been fixed.
1005
- - `#I292642` - An issue when timezone is set the calendar today date is not updated properly issue has been fixed.
1006
-
1007
- ## 18.4.34 (2021-01-12)
1008
-
1009
- ### Schedule
1010
-
1011
- #### Bug Fixes
1012
-
1013
- - `I309759, I309773` - An issue with the `getCurrentViewDates` returned incorrect dates in Agenda view has been fixed.
1014
-
1015
- ## 18.4.33 (2021-01-05)
1016
-
1017
- ### Schedule
1018
-
1019
- #### New Features
1020
-
1021
- - `#I305332, #I309559` - Provided different options to set the week numbers like Microsoft Outlook Calendar.
1022
-
1023
- #### Bug Fixes
1024
-
1025
- - `#I307462` - An issue when editing date time and End as until the last event not rendered has been fixed.
1026
- - `#F159141` - An issue when enable persistence is true selected resource not rendered issue has been fixed.
1027
- - `#I304107` - An issue when request to return current view or view model issue has been resolved.
1028
- - `#I306554, #I307686` - An issue when rendering the appointments in timeline year view has been fixed.
1029
- - `#F20602` - An issue with the position of the more event popup window is calculating wrongly when we setting the timescale interval has been fixed.
1030
- - An issue with appointments overlapping in year view has been fixed.
1031
- - `#I306366` - An issue with resource text is not visible in mobile mode issue has been fixed.
1032
-
1033
- ## 18.4.32 (2020-12-29)
1034
-
1035
- ### Schedule
1036
-
1037
- #### New Features
1038
-
1039
- - Provided public methods for the Scheduler to get and set the resource collections.
1040
-
1041
- ## 18.4.31 (2020-12-22)
1042
-
1043
- ### Schedule
1044
-
1045
- #### Bug Fixes
1046
-
1047
- - `#301175` - An issue with the appointment top value in timeline views for the appointment rendered in the last resource has been fixed.
1048
-
1049
- ## 18.4.30 (2020-12-17)
1050
-
1051
- ### Schedule
1052
-
1053
- #### New Features
1054
-
1055
- - Provided the event Drag and Drop and Resize support for Timeline Year view.
1056
-
1057
- #### Bug Fixes
1058
-
1059
- - `#159985` - An issue with `scrollToResource` public method not working properly has been fixed.
1060
- - `#159896`- An issue with the appointments are misaligned when `rowAutoHeight` is true has been fixed.
1061
- - `#18946` - An issue with displaying date twice for DST time-zones when switching between summer and winter time, has been fixed.
1062
- - `#300527` - An issue with loose shadow event once new week opens issue has been fixed.
1063
- - `#292074` - An issue with Schedule event dragging is not working fine when set up the `eventDragArea` property has been fixed.
1064
- - `#303564` - An issue with Editor window throws script error has been fixed.
1065
- - `#304988` - An issue with Scheduler throws script error when navigate form the scheduler to other component has been fixed.
1066
-
1067
- ## 18.3.53 (2020-12-08)
1068
-
1069
- ### Schedule
1070
-
1071
- #### Bug Fixes
1072
-
1073
- - `#286035` - An issue with theme mapping has been fixed.
1074
- - `#299009, #305259` - An issue with the `resourceHeaderTemplate` shows empty content when changing the properties of schedule if tooltip enabled has been fixed.
1075
- - `#159749` - An issue with Scheduler is not refreshed properly while navigating has been fixed.
1076
- - `#305387` - An issue with events not displayed on proper time has been fixed.
1077
- - `#301811` - An issue with render RTE component as a additional field in the editor template has been fixed.
1078
-
1079
- ## 18.3.51 (2020-11-24)
1080
-
1081
- ### Schedule
1082
-
1083
- #### Bug Fixes
1084
-
1085
- - `#292642` - An issue with the event rendering with `StartTimezone` and `EndTimezone` fields at the time of initial loading alone has been fixed.
1086
- - `#292642` - An issue with date navigation from calendar with different timezone has been fixed.
1087
- - `#F16947` - An issue with events on same day and time overlap in readable way has been fixed.
1088
- - `#F159110` - An issues with Scheduler timeline year view has been fixed.
1089
- - `#F159666` - An issue with wrong element in `renderCell` event has been fixed.
1090
- - `#F159432` - An issue with customizing the dragging interval time of the events has been fixed.
1091
- - `#301811` - An issue with render RTE component as a additional field in the editor template has been fixed.
1092
-
1093
- ## 18.3.50 (2020-11-17)
1094
-
1095
- ### Schedule
1096
-
1097
- #### Bug Fixes
1098
-
1099
- - `#299272` - An issue with the all day spanned events are not properly rendered in the timeline year view has been fixed.
1100
- - `#299896` - An issue with events get overlapped, when we render the two events at the same time has been fixed.
1101
- - `#299009` - An issue with `resourceHeaderTemplate` when enable the schedule tooltip has been fixed.
1102
-
1103
- ## 18.3.48 (2020-11-11)
1104
-
1105
- ### Schedule
1106
-
1107
- #### Bug Fixes
1108
-
1109
- - `#299517` - An issue with the `displayName` property not working in the Agenda view and the `MonthAgenda` view has been fixed.
1110
-
1111
- ## 18.3.44 (2020-10-27)
1112
-
1113
- ### Schedule
1114
-
1115
- #### Bug Fixes
1116
-
1117
- - `#F158249` - Now `scrollTo()` support has been added in timeline year view.
1118
- - `#292093` - An issue with setting the resize interval for event in `resizeStart` not resizing the event to its minimum interval value has been fixed.
1119
- - `#299079` - An issue with Custom editor window throws script error has been fixed.
1120
-
1121
- ## 18.3.42 (2020-10-20)
1122
-
1123
- ### Schedule
1124
-
1125
- #### Bug Fixes
1126
-
1127
- - `#293358` - An issue with the Scheduler events are not rendered in month view and the same events rendered in other views has been fixed.
1128
- - `#286376` - An issue with refreshing the layout when setting `dataSource` dynamically using `setmodel` in Year view has been fixed.
1129
- - `#286376` - An issue with view navigation when setting `dataSource` dynamically using `setmodel` in year view has been fixed.
1130
- - `#294568` - An issue with all day spanned event is not rendered properly in the `TimelineYear` view has been fixed.
1131
- - `#296098` - An issue with event click action on less duration events not deselecting the previously selected event has been fixed.
1132
- - `#286199` - An issue with when destroying the child component used in the editor template the child component is destroyed multiple time has been fixed.
1133
- - `#297720` - An issue with creating an event for the resource parent work cells using `addEvent` method has been fixed.
1134
-
1135
- ## 18.3.40 (2020-10-13)
1136
-
1137
- ### Schedule
1138
-
1139
- #### Bug Fixes
1140
-
1141
- - `#290061` - An issue with the drop action not working properly in the first row of the Scheduler has been fixed.
1142
- - `#289933` - An issue with the flickering clone drag element when dragging action is performed at the top most cells of the Scheduler has been fixed.
1143
- - `#285797` - An issue with dragging an appointment beyond the schedule end time causes appointment to jump has been fixed.
1144
- - `#290061` - An issue with the drop action not working properly in the first row of the Scheduler has been fixed.
1145
- - `#289933` - An issue with the flickering clone drag element when dragging action is performed at the top most cells of the Scheduler has been fixed.
1146
- - `#292609` - An issue with dynamically changed `minDate` and `maxDate` property are not applying to editor start and end date pickers has been fixed.
1147
- - `#296040` - An issue with event template is not applied in react scheduler has been fixed.
1148
-
1149
- ## 18.3.35 (2020-10-01)
1150
-
1151
- ### Schedule
1152
-
1153
- #### Bug Fixes
1154
-
1155
- - `#292642` - An issue with date navigation from calendar today button with different timezone has been fixed.
1156
- - `#292609` - An issue with applying `minDate` and `maxDate` when until date of recurrence editor is configured has been fixed.
1157
- - `#157158` - An issue with events not displaying when set `minDate` and `maxDate` as string type has been fixed.
1158
- - `#292093` - An issue with events that are not properly rendered when the drag target moves outside the work cell has been fixed.
1159
- - `#157442` - An issue with improper alignment of header cells while remove resource dynamically has been fixed.
1160
- - `#287725` - An issue with clone element height is not calculated properly when disable the timescale in week view has been fixed.
1161
- - `#292250` - An issue with timeline views resource tree tab accessibility navigation has been fixed.
1162
-
1163
- ## 18.2.59 (2020-09-21)
1164
-
1165
- ### Schedule
1166
-
1167
- #### Bug Fixes
1168
-
1169
- - `#292250` - An issue with accessibility related navigations from one resource to another resource events issue has been fixed.
1170
-
1171
- ## 18.2.57 (2020-09-08)
1172
-
1173
- ### Schedule
1174
-
1175
- #### Bug Fixes
1176
-
1177
- - `#156859` - An issue with the resource name is displayed wrongly in quick popup has been fixed.
1178
- - `#157022` - An issue with character encoding in german umlaut culture while import iCalendar has been fixed.
1179
- - `#289020` - An issue with script error throws while creating new events in the iPhone has been fixed.
1180
-
1181
- ## 18.2.55 (2020-08-25)
1182
-
1183
- ### Schedule
1184
-
1185
- #### Bug Fixes
1186
-
1187
- - `#286271` - An issue with the block events are not rendered When we changing the scheduler `timezone` dynamically has been fixed.
1188
- - `#154907, #154998` - An issue with `Agenda` view while `allowVirtualscrolling` and `hideEmptyAgendaDays` set to be true has been fixed.
1189
- - `#289191` - An issue with agenda view freezes when we render a spanned event with a millisecond end time value is fixed.
1190
- - `#156849` - An issue with Scheduler throws script error when perform event drag action above the cells with `cellTemplate` has been fixed.
1191
- - `#286376` - An issue with horizontal year view events has been fixed.
1192
-
1193
- ## 18.2.54 (2020-08-18)
1194
-
1195
- ### Schedule
1196
-
1197
- #### Bug Fixes
1198
-
1199
- - `#285796` - An issue with dragging the events to the first row in vertical view not working properly when page scrolling is enabled has been fixed.
1200
- - `#285797` - An issue with drag and drop not working properly in the vertical view in the last cell of the day when using the timescale property has been fixed.
1201
- - `#287725` - An issue with drag and drop doesn't work properly when we disable `timeScale` property has been fixed.
1202
-
1203
- ## 18.2.47 (2020-07-28)
1204
-
1205
- ### Schedule
1206
-
1207
- #### Bug Fixes
1208
-
1209
- - `#282556` - An issue with resizing the events has been fixed.
1210
- - `#284373` - An issue with adding multiple CSS classes to `cssClass` property has been fixed.
1211
-
1212
- ## 18.2.46 (2020-07-21)
1213
-
1214
- ### Schedule
1215
-
1216
- #### Bug Fixes
1217
-
1218
- - `#154622` - An issue with date format is not showing correctly in Mac browsers has been fixed.
1219
- - `#283631` - An issue with resizing not working properly with Timeline views when the resize interval is 5 has been fixed.
1220
- - `#284869` - An issue with events are disappeared after resizing the browser window has been fixed.
1221
- - `#280860` - An issue with the clone element while drag and drop on first resource has been fixed.
1222
- - `#232618, #236674, #246713, #246657, #271311` - An issue with Scheduler content is take some time delay to update when enabling resource virtual scrolling has been fixed.
1223
- - `#281573` - An issue with events not rendered in the `WorkWeek` view when applied `firstDayofweek` property has been fixed.
1224
- - `#283295` - An issue with script error thrown while clicking on the cell in multi level resource grouping scheduler has been fixed.
1225
- - `#282818` - An issue with the single resource can perform in multiple group with same resource id has been fixed.
1226
-
1227
- ## 18.2.44 (2020-07-07)
1228
-
1229
- ### Schedule
1230
-
1231
- #### New Features
1232
-
1233
- - **Inline Editing** - The feature enables user to Edit an appointment’s title or create an appointment easily through a single click on the cells or on the existing appointment’s subject.
1234
- - **Year View** - Utilize a horizontal year view in Schedule that exposes the annual view of the calendar. This will help users who navigate between years and months frequently.
1235
- - **Enhancement of Timeline Year View** - The existing timeline year view now has added support to configure multiple resources, enable row auto-height, and drag and drop appointments.
1236
-
1237
- #### Bug Fixes
1238
-
1239
- - `#280595` - An issue with event subject default field mapping is not consider in UI has been fixed.
1240
-
1241
- ## 18.1.56 (2020-06-09)
1242
-
1243
- ### Schedule
1244
-
1245
- #### Bug Fixes
1246
-
1247
- - `#278019` - An issue with drag and drop of vertical view events doesn't work properly when we disable `timeScale` property has been fixed.
1248
-
1249
- ## 18.1.55 (2020-06-02)
1250
-
1251
- ### Schedule
1252
-
1253
- #### Bug Fixes
1254
-
1255
- - `#271944` - An issue with header calendar doesn't close when using two scheduler in same document has been fixed.
1256
- - `#154305, #153364` - An issue with keypad closes instantly when opening the editor window on Android devices has been resolved.
1257
-
1258
- ## 18.1.54 (2020-05-26)
1259
-
1260
- ### Schedule
1261
-
1262
- #### Bug Fixes
1263
-
1264
- - `#151241` - An issue with `popupOpenEventArgs` API documentation has missing possible type value has been fixed.
1265
-
1266
- ## 18.1.52 (2020-05-13)
1267
-
1268
- ### Schedule
1269
-
1270
- #### New Features
1271
-
1272
- - Now resource grouping support has been added in timeline year view.
1273
-
1274
- #### Bug Fixes
1275
-
1276
- - `#272563` - An issue with drag and drop of all day events doesn't work properly when we disable `timeScale` property has been fixed.
1277
- - `#271586` - An issue with event is not created in Sunday and Saturday of the `WorkWeek` view has been fixed.
1278
- - `#153364` - An issue with appointment alignment while rotation has been fixed.
1279
- - `#273474` - An issue with `editFollowingEvent` has been fixed.
1280
-
1281
- ## 18.1.48 (2020-05-05)
1282
-
1283
- ### Schedule
1284
-
1285
- #### Bug Fixes
1286
-
1287
- - `#F11316` - An issue with `ToolbarActionArgs` is deprecated but without it, Print Exporting won't work has been fixed.
1288
- - `#273612` - An issue with blocked events in mobile mode has been fixed.
1289
-
1290
- ## 18.1.46 (2020-04-28)
1291
-
1292
- ### Schedule
1293
-
1294
- #### Bug Fixes
1295
-
1296
- - `#F11648` - An issue with previous value maintaining in select event has been fixed.
1297
- - `#F12531` - An issue with `allowMultiRowSelection` is not working properly in timeline views has been fixed.
1298
- - `#268604` - An issue with improper time slots rendering when daylight saving time occurring date has been fixed.
1299
- - `#271829` - An issue with selected class is not applied properly in `MonthAgenda` view has been fixed.
1300
- - `#273646` - An issue with `aria-readonly` attribute has been fixed.
1301
- - `#266725` - An issue with `scrollToResource` method when we enabled the `virtualScrolling` property has been fixed.
1302
- - `#271264` - An issue with `scrollToResource` method when we enabled the `rowAutoHeight` property has been fixed.
1303
-
1304
- ## 18.1.45 (2020-04-21)
1305
-
1306
- ### Schedule
1307
-
1308
- #### Bug Fixes
1309
-
1310
- - `#273039` - An issue with a resource field value doesn't get right if we have the same field mapping for all resource levels when `allowMultiple` is true has been fixed.
1311
- - `#F152942` - An issue with `getGroupIndexFromEvent` is not returning the correct result once the resource has enabled the `allowMultiple` property has been fixed.
1312
-
1313
- ## 18.1.44 (2020-04-14)
1314
-
1315
- ### Schedule
1316
-
1317
- #### Bug Fixes
1318
-
1319
- - `#151925` - An issue with locale words are not translated properly has been fixed.
1320
-
1321
- ## 18.1.43 (2020-04-07)
1322
-
1323
- ### Schedule
1324
-
1325
- #### Bug Fixes
1326
-
1327
- - `#269022` - In timeline views, an issue with appointments is positioned in the wrong place when browser zooming is set at 75% and 67% has been fixed.
1328
-
1329
- ## 18.1.42 (2020-04-01)
1330
-
1331
- ### Schedule
1332
-
1333
- #### Bug Fixes
1334
-
1335
- - `#269264` - An issue with last occurrence of the recurrence event is not rendered on month view has been fixed.
1336
-
1337
- ## 18.1.36-beta (2020-03-19)
1338
-
1339
- ### Schedule
1340
-
1341
- #### Bug Fixes
1342
-
1343
- - `#151738` - An issue with swipe action in mobile mode while applying `setWorkHours()` method has been fixed.
1344
- - `#151972` - An issue with particular recurrence event while changing time zone as `Eastern time` has been fixed.
1345
-
1346
- ## 17.4.55 (2020-03-10)
1347
-
1348
- ### Schedule
1349
-
1350
- #### Bug Fixes
1351
-
1352
- - `#266530` - An issue with the property `editFollowingEvents` with count repeat type has been fixed.
1353
- - `#266933` - An issue with the property `editFollowingEvents` does not work properly when block events presents has been fixed.
1354
- - `#266725` - An issue with the method `scrollToResource()` which does not work properly when the virtual scroll property is enabled has been fixed.
1355
- - `#151209` - An issue with swipe action in mobile mode when `minDate/maxDate` applied has been fixed.
1356
- - `#263624` - An issue with the scheduler rendered with the block events shows the misplaced header cells on the Timeline month view has been fixed.
1357
-
1358
- ## 17.4.51 (2020-02-25)
1359
-
1360
- ### Schedule
1361
-
1362
- #### Bug Fixes
1363
-
1364
- - `#151346` - An issue with unexpected delete alert behaviour for longer duration events has been fixed.
1365
- - `#151346` - An issue with multi select events of adaptive Scheduler mode has been fixed.
1366
- - `#151209` - An issue with misplaced dragging events in different time intervals has been fixed.
1367
- - `#149561` - An issue with scheduler throwing script error while dragging the event with the option `groupByDate` in day view has been fixed.
1368
- - `#263624` - An issue with the scheduler rendered with the block events shows the misplaced header cells on the Timeline month view has been fixed.
1369
- - `#151455` - An issue in long spanned events in year view has been fixed.
1370
- - `#263715` - An issue with dragging not working properly when page scrolling is enabled has been fixed.
1371
-
1372
- ## 17.4.50 (2020-02-18)
1373
-
1374
- ### Schedule
1375
-
1376
- #### Bug Fixes
1377
-
1378
- - `#148560` - An issue with misplaced dragging events in different drag intervals has been fixed.
1379
- - `#262962` - An issue with page becoming crash for invalid recurrence rule has been fixed.
1380
- - `#151346` - An issue with incorrect aria-label for alert windows has been fixed.
1381
-
1382
- ## 17.4.46 (2020-01-30)
1383
-
1384
- ### Schedule
1385
-
1386
- #### New Features
1387
-
1388
- - Provided public method to scroll to the position of the any resources that available on the scheduler.
1389
- - Provided public method to change the current view based on index.
1390
- - Added option to render single event per cell using `enableMaxHeight` property.
1391
-
1392
- #### Bug Fixes
1393
-
1394
- - `#F145578` - An issue with `scrollTo()` method not working properly in Timeline Week View has been fixed.
1395
-
1396
- ## 17.4.43 (2020-01-14)
1397
-
1398
- ### Schedule
1399
-
1400
- #### Bug Fixes
1401
-
1402
- - `#149393` - An issue with event rendering in Timeline mode with `timescale` property has been fixed.
1403
- - `#150335` - An issue with draggable clone element position on scroll has been fixed.
1404
- - `#256071` - An issue with `datepicker popup` not closing properly has been fixed.
1405
- - `#258565` - An issue with drag-and-drop flickering has been fixed.
1406
-
1407
- ## 17.4.41 (2020-01-07)
1408
-
1409
- ### Schedule
1410
-
1411
- #### Bug Fixes
1412
-
1413
- - `#150069` - An issue with recurrence count limitation has been fixed.
1414
- - `#148560` - An issue with drag interval has been fixed.
1415
- - `#258735` - An issue with event rendering in Timeline mode with `startHour` property has been fixed.
1416
- - `#149868` - An issue with event resizing in Vertical mode with `startHour` property has been fixed.
1417
- - `#257355` - An issue with displaying the clicked date's event details in Month Agenda view with read only mode has been fixed.
1418
- - `#258455` - An issue with Accessibility has been fixed.
1419
-
1420
- ## 17.4.39 (2019-12-17)
1421
-
1422
- ### Schedule
1423
-
1424
- #### Bug Fixes
1425
-
1426
- - `#254033` - An issue with rendering Scheduler with empty resource collection has been fixed.
1427
- - `#252616` - An issue with page becoming idle for invalid recurrence rule has been fixed.
1428
- - `#149561` - An issue with drag and drop behaviour with resource date wise grouping option has been fixed.
1429
- - `#255919` - An issue with current month not displaying in calendar after swiping in mobile mode has been fixed.
1430
- - An issue with event position while zooming the page has been fixed.
1431
- - An issue with displaying wrong week number for DST time-zones has been fixed.
1432
-
1433
- ## 17.3.28 (2019-11-19)
1434
-
1435
- ### Schedule
1436
-
1437
- #### Bug Fixes
1438
-
1439
- - `#148606, #148770, #253868, #253137 , #253534` - An issue with displaying wrong timeslot and time for DST time-zones has been fixed.
1440
- - `#148560` - An issue with custom drag interval has been fixed.
1441
-
1442
- ## 17.3.27 (2019-11-12)
1443
-
1444
- ### Schedule
1445
-
1446
- #### Bug Fixes
1447
-
1448
- - `#253534` - An issue with displaying fractional value in Agenda view for DST time-zones has been fixed.
1449
- - `#253652` - An issue with triggering the `popupClose` event on clicking outside the Scheduler has been fixed.
1450
- - An issue with event height whose duration is less than 30 minutes has been fixed.
1451
- - `#253519` - An issue with events overlapping whose start and end time are same has been fixed.
1452
-
1453
- ## 17.3.19 (2019-10-22)
1454
-
1455
- ### Schedule
1456
-
1457
- #### Bug Fixes
1458
-
1459
- - `#251995` - An issue with request type parameter of action complete event while performing CRUD actions has been fixed.
1460
-
1461
- ## 17.3.17 (2019-10-15)
1462
-
1463
- ### Schedule
1464
-
1465
- #### Bug Fixes
1466
-
1467
- - An issue with displaying week number with different `firstDayOfWeek` has been fixed.
1468
- - `#244512` - An issue with recurrence option in editor template has been fixed.
1469
- - `#148187` - An issue with default flag missing in variable `$schedule-tbar-border-hover-color` from `bootstrap4` theme has been fixed.
1470
-
1471
- ## 17.3.16 (2019-10-09)
1472
-
1473
- ### Schedule
1474
-
1475
- #### Bug Fixes
1476
-
1477
- - `#147850`, `#249678` - An issue with event click action is not working in the latest version of iOS has been fixed.
1478
- - `#246126` - An issue with toolbar is not working properly in all overflow modes in Scheduler has been fixed.
1479
- - An issue with recurrence date is not generated properly in month option has been fixed.
1480
-
1481
- ## 17.3.14 (2019-10-03)
1482
-
1483
- ### Schedule
1484
-
1485
- #### Bug Fixes
1486
-
1487
- - `#240169` - An issue with drag and drop the appointments which are taller than the Scheduler has been fixed.
1488
- - `#249012` - An issue with editing the recurrence events in the block dates has been fixed.
1489
- - `#246295` - An issue with `QuickInfo` window is not open on cell click action has been fixed.
1490
- - `#245942`, `#241514` - An issue with scrolling is not working in properly in different mobile mode has been fixed.
1491
- - `#246563` - An issue with event is not rendered properly in agenda view has been fixed.
1492
- - `#244271` - An issue with editor window is not closed when edit the event has been fixed.
1493
- - `#246788` - An issue with cell selection event does not provide the proper cell details has been fixed.
1494
- - `#246565` - An issue with scroller position is not positioned at current date in timeline month view has been fixed.
1495
-
1496
- ## 17.3.9-beta (2019-09-20)
1497
-
1498
- ### Schedule
1499
-
1500
- #### Bug Fixes
1501
-
1502
- - `#147443` - An issue with editor window headers are misaligned in mobile mode has been fixed.
1503
- - `#147383` - An issue with drag and drop action is not working properly when `enableCompactView` disabled in mobile mode has been fixed.
1504
- - `#246161` - An issue with multiple cell selections are not maintained when mouse right button click action has been fixed.
1505
- - `#245932` - An issue with `showWeekend` field showing week ends either it is set as false has been fixed.
1506
-
1507
- ## 17.2.49 (2019-09-04)
1508
-
1509
- ### Schedule
1510
-
1511
- #### Bug Fixes
1512
-
1513
- - `#244555` - An issue with recurrence editor change event is not populate the updated rule value has been fixed.
1514
-
1515
- ## 17.2.47 (2019-08-27)
1516
-
1517
- ### Schedule
1518
-
1519
- #### Bug Fixes
1520
-
1521
- - `#245942` - An issue with `quick popup` open on tab hold action in mobile mode has been fixed.
1522
- - `#242531` - An issue with events not updated properly while changing Scheduler time zone dynamically has been fixed.
1523
- - `#244512` - An issue with recurrence editor value not mapping in custom editor window has been fixed.
1524
-
1525
- ## 17.2.41 (2019-08-14)
1526
-
1527
- ### Schedule
1528
-
1529
- #### Bug Fixes
1530
-
1531
- - `#241514` - An issue with clone element not removing in DOM while invoke `refreshEvents` public method.
1532
-
1533
- ## 17.2.40 (2019-08-06)
1534
-
1535
- ### Schedule
1536
-
1537
- #### Bug Fixes
1538
-
1539
- - `#242906` - An issue with action begin event is not triggered in event add action within editor template has been fixed.
1540
- - `#242299` - An issue with events misaligned in different browser zooming has been fixed.
1541
- - `#243422` - An issue with recurrence validation is showing unwanted alert has been fixed.
1542
- - `#240463` - An issue with end time value of editor window in month view has been fixed.
1543
- - `#146092` - An issue with displaying week number with different `firstDayOfWeek` has been fixed.
1544
-
1545
- ## 17.2.39 (2019-07-30)
1546
-
1547
- ### Schedule
1548
-
1549
- #### Bug Fixes
1550
-
1551
- - `#242057` - An issue with applying different work hours for each individual resource when the `byDate` option is enabled within `group` property has been fixed.
1552
- - `#240752` - An issue with recurrence option while using `editorTemplate` has been fixed.
1553
- - `#242634` - An issue with calendar format in timeline month view has been fixed.
1554
- - Getting wrong start and end time for the longer appointments in timeline views issue has been fixed.
1555
- - An issue with recurring events while defining recurrence rule on it that includes both BYMONTH, BYMONTHDAY and BYDAY properties together has been fixed.
1556
-
1557
- ## 17.2.35 (2019-07-17)
1558
-
1559
- ### Schedule
1560
-
1561
- #### Bug Fixes
1562
-
1563
- - `#240271` - An issue with misalignment of +more indicator when the custom elements and appointments are rendered in same cell has been fixed.
1564
-
1565
- ## 17.2.34 (2019-07-11)
1566
-
1567
- ### Schedule
1568
-
1569
- #### Bug Fixes
1570
-
1571
- - Start and end time of events in month and timeline views now been correctly acquired in `eventRendered` event and event template.
1572
- - `#240585` - Start time, end time and group index of clone element now been tracked in the events `drag` and `resizing`.
1573
- - `#240271` - An issue with misalignment of +more indicator when the custom elements and appointments are rendered in same cell has been fixed.
1574
-
1575
- ## 17.2.28-beta (2019-06-27)
1576
-
1577
- ### Schedule
1578
-
1579
- #### New Features
1580
-
1581
- - Improved the drag and resize action for longer duration appointments.
1582
- - Support to print the Scheduler layout.
1583
- - Provided an option to edit the following recurrence events.
1584
- - Provided time zone support to current time indicator.
1585
- - Provided public method to reset/remove the highlighted work cells.
1586
-
1587
- #### Bug Fixes
1588
-
1589
- - Localization is not set properly to `datetimepicker` in editor window issue has been fixed.
1590
- - `openEditor` method is not set the given start and end time in month view issue has been fixed.
1591
- - `#145352` - An issue with displaying expand icon of parent resource which has no child has been fixed.
1592
-
1593
- ## 17.1.51 (2019-06-11)
1594
-
1595
- ### Schedule
1596
-
1597
- #### Bug Fixes
1598
-
1599
- - `#234343` - An issue with adding resources dynamically when it has empty collection in initially has been fixed.
1600
- - `#235165` - An issue with `rowAutoHeight` property enabled the horizontal scroll wrongly in month view has been fixed.
1601
-
1602
- ## 17.1.50 (2019-06-04)
1603
-
1604
- ### Schedule
1605
-
1606
- #### Bug Fixes
1607
-
1608
- - `#234667` - An issue with Scheduler is not properly navigating to selected date in timeline views has been fixed.
1609
- - `#234974` - An issue with Deleting ready only events is fixed.
1610
- - `#143894` - An issue with selecting work cells for multiple rows is fixed.
1611
- - `#234587` - An issue with rendering events with huge number of events in same times in week view is fixed.
1612
-
1613
- ## 17.1.48 (2019-05-21)
1614
-
1615
- ### Schedule
1616
-
1617
- #### Bug Fixes
1618
-
1619
- - `#143979` - Events not rendered properly with `allowGroupEdit` when the resource id is two digit issue has been fixed.
1620
- - `#234916` - Delete key not working properly in IE11 issue has been fixed.
1621
-
1622
- ## 17.1.44 (2019-05-07)
1623
-
1624
- ### Schedule
1625
-
1626
- #### Bug Fixes
1627
-
1628
- - `#233286` - An issue with event not rendered properly in start and end time date format as string in agenda view is fixed.
1629
- - `#234231` - An issue with setting the different work hours in timeline week is fixed.
1630
- - `#143531` - An issue with event not loaded properly in agenda virtual scrolling is fixed.
1631
-
1632
- ## 17.1.43 (2019-04-30)
1633
-
1634
- ### Schedule
1635
-
1636
- #### Bug Fixes
1637
-
1638
- - `#233410` - An issue with date is not retrieved in view navigation in timeline month view is fixed.
1639
-
1640
- ## 17.1.42 (2019-04-23)
1641
-
1642
- ### Schedule
1643
-
1644
- #### Bug Fixes
1645
-
1646
- - `#143894` - An issue with select event arguments element value returns wrongly has been fixed.
1647
- - `#230544` - An issue with `editorTemplate` is not accessing the cell or event details has been fixed.
1648
- - `#229980`, `#229989` - An issue with appointment position misplaced in timeline views has been fixed.
1649
-
1650
- ## 17.1.41 (2019-04-16)
1651
-
1652
- ### Schedule
1653
-
1654
- #### Bug Fixes
1655
-
1656
- - `#143412` - An issue with event editing using public `saveEvent` method and checking slot availability using `isSlotAvailable` method is fixed.
1657
- - `#143720` - An issue with passing multiple resource for adding dynamically using `addResource` public method is fixed.
1658
- - `#232246` - An issue with event resizing is not properly update when `startHour` and `endHour` using in timeline views is fixed.
1659
- - `#231332` - An issue with block alert validation in recurrence event and data is not received in `popupOpen` event is fixed.
1660
-
1661
- ## 17.1.38 (2019-03-29)
1662
-
1663
- ### Schedule
1664
-
1665
- #### Bug Fixes
1666
-
1667
- - An issue while resizing all-day events in Scheduler, with disabled timescale mode is fixed.
1668
- - An event to trigger on selection of multiple cells or events has been added.
1669
-
1670
- ## 17.1.32-beta (2019-03-13)
1671
-
1672
- ### Schedule
1673
-
1674
- #### New Features
1675
-
1676
- - Provided support to auto-adjust the height of work cells based on the number of appointments present in the same time ranges.
1677
- - Support for exporting the Scheduler events to an Excel file format is provided.
1678
- - Support has been provided to export the Scheduler events to a calendar (`.ics`) file, as well as to import events from an `.ics` file into our Scheduler.
1679
-
1680
- ## 16.4.55 (2019-02-27)
1681
-
1682
- ### Schedule
1683
-
1684
- #### Bug Fixes
1685
-
1686
- - An issue with unable to scroll down the browser scroller, when the Scheduler is loaded with Month Agenda as current view has been fixed.
1687
-
1688
- ## 16.4.54 (2019-02-19)
1689
-
1690
- ### Schedule
1691
-
1692
- #### Bug Fixes
1693
-
1694
- - An issue with events not displaying correctly based on Agenda view's current date range has been fixed.
1695
- - An issue with recurring events while defining recurrence rule on it that includes both BYMONTH and BYDAY properties together has been fixed.
1696
- - An issue with incorrect casing of `popupOpen` event's parameters that triggers on cell click action has been fixed.
1697
- - An issue with 24 hours format not displaying in time cells of adaptive Scheduler mode has been fixed.
1698
-
1699
- ## 16.4.53 (2019-02-13)
1700
-
1701
- ### Schedule
1702
-
1703
- #### Bug Fixes
1704
-
1705
- - An issue that occurs on enabling the time interval for resizing in timeline day view has been fixed.
1706
-
1707
- ## 16.4.52 (2019-02-05)
1708
-
1709
- ### Schedule
1710
-
1711
- #### New Features
1712
-
1713
- - Improvements done to support creation of recurring events based on the recurrence rule properties, that lies under the criteria of limited combination.
1714
- - The recurring appointments of Scheduler can be now created and processed successfully based on the Islamic calendar dates.
1715
-
1716
- ## 16.4.47 (2019-01-16)
1717
-
1718
- ### Schedule
1719
-
1720
- #### Bug Fixes
1721
-
1722
- - An issue with event display order getting changed within the more event container of timeline views has been fixed.
1723
- - An issue with the display of time range text in `quick popup`, when both the start and end time of a spanned event has the same exact hours and minutes but with different dates has been fixed.
1724
-
1725
- ## 16.4.45 (2019-01-02)
1726
-
1727
- ### Schedule
1728
-
1729
- #### Bug Fixes
1730
-
1731
- - An issue with the display of `+n more popup` on Scheduler, while setting appointment time in seconds has been fixed.
1732
-
1733
- ## 16.4.44 (2018-12-24)
1734
-
1735
- ### Schedule
1736
-
1737
- #### Bug Fixes
1738
-
1739
- - An issue with `quick popup` opening on blocked time ranges has been fixed.
1740
-
1741
- ## 16.4.42 (2018-12-14)
1742
-
1743
- ### Schedule
1744
-
1745
- #### New Features
1746
-
1747
- - Provided support to display Scheduler in Islamic calendar mode.
1748
-
1749
- ## 16.4.40-beta (2018-12-10)
1750
-
1751
- ### Schedule
1752
-
1753
- #### New Features
1754
-
1755
- - A specific time range can be blocked on Scheduler now, to prevent the creation of appointments in that time slot.
1756
- - Specific events can be made read-only, restricting any CRUD actions.
1757
- - Load resources and appointments of timeline views virtually on every scroll action.
1758
-
1759
- #### Bug Fixes
1760
-
1761
- - An issue that occurs with BYDAY rule option, while defining day names in different order has been fixed.
1762
- - An issue with `eventClick` client-side event not triggering, while selecting multiple appointments by pressing `ctrl` key and mouse click combination has been fixed.
1763
- - An issue with wrong display of + more count indicator in all-day row has been fixed.
1764
-
1765
- #### Breaking Changes
1766
-
1767
- - The default value of `allowVirtualScrolling` has been changed to `false`.
1768
-
1769
- ## 16.3.32 (2018-11-13)
1770
-
1771
- ### Schedule
1772
-
1773
- #### Bug Fixes
1774
-
1775
- - An issue with date and time displaying wrongly on `quick popup` in the presence of Daylight Saving Time has been fixed.
1776
-
1777
- ## 16.3.31 (2018-11-07)
1778
-
1779
- ### Schedule
1780
-
1781
- #### Breaking Changes
1782
-
1783
- - Misalignment issue with edit and delete icons on edit `event popup` has been fixed.
1784
-
1785
- ## 16.3.29 (2018-10-31)
1786
-
1787
- ### Schedule
1788
-
1789
- #### New Features
1790
-
1791
- - Support to drag and drop an item from external source into scheduler and vice versa has been provided.
1792
- - In mobile devices, drag and drop support has been enabled by tap holding and moving the appointments over the time slots.
1793
- - Auto navigation option from current scheduler view to previous or next date range has been provided, while dragging an appointment to the left or right extremities of the view port.
1794
- - Scrolling action has been improved to enable smooth scrolling, while dragging an appointment to any of the view port extremities.
1795
-
1796
- ## 16.3.24 (2018-10-09)
1797
-
1798
- ### Schedule
1799
-
1800
- #### Bug Fixes
1801
-
1802
- - Misalignment issue with header cells of timeline views in Safari browser has been fixed.
1803
- - An issue with appointment resizing, when the scheduler is placed at bottom in a container that has scroll-able height has been fixed.
1804
-
1805
- ## 16.3.23 (2018-10-03)
1806
-
1807
- ### Schedule
1808
-
1809
- #### Bug Fixes
1810
-
1811
- - An issue with scheduler throwing script error while rendering it as hidden element has been fixed.
1812
-
1813
- ## 16.3.17 (2018-09-12)
1814
-
1815
- ### Schedule
1816
-
1817
- #### New Features
1818
-
1819
- - **Timeline view** - Displays the day, week, work week and month view layouts in timeline mode by illustrating both the date and time intervals in horizontal orientation. Also, it organizes the resource display in a hierarchical tree structure based on the grouping levels.
1820
- - **Header rows** - Provided support to add custom header rows on timeline views, to depict an additional row for displaying the corresponding year, month, week number and dates.
1821
- - **Drag and Drop** - Appointments can be easily rescheduled to some other time, by dragging and dropping it onto the required time slots.
1822
- - **Resize** - Appointment’s time can be easily extended either by resizing its start or end handlers.
1823
- - **Week Number** - Support added to display the week number of the current date, beside the date header section.
1824
- - Provided template support for customizing `quick popup`, that opens while clicking on the cells or appointments.
1825
- - The data type of the appointment ID field is made compatible to accept both string and number type values.
1826
-
1827
- #### Bug Fixes
1828
-
1829
- - An issue with customization done on `quick popup` getting lost, while clicking on the same target twice has been fixed.
1830
-
1831
- ## 16.2.47 (2018-08-07)
1832
-
1833
- ### Schedule
1834
-
1835
- #### Bug Fixes
1836
-
1837
- - An issue with `isSlotAvailable` method not returning proper event collection, while providing event’s start and end time data as its parameter has been fixed.
1838
-
1839
- ## 16.2.46 (2018-07-30)
1840
-
1841
- ### Schedule
1842
-
1843
- #### Bug Fixes
1844
-
1845
- - An issue with creation of weekly recurrence appointment, without providing `repeat every` field value has been fixed.
1846
- - An issue that occurred due to the improper destroy action on sub-components of scheduler has been fixed.
1847
-
1848
- ## 16.2.44 (2018-07-10)
1849
-
1850
- ### Schedule
1851
-
1852
- #### Bug Fixes
1853
-
1854
- - An issue with delete icon not displaying in a disabled state on `quick popup`, when scheduler is set to `readonly` has been fixed.
1855
-
1856
- ## 16.2.43 (2018-07-03)
1857
-
1858
- ### Schedule
1859
-
1860
- #### Bug Fixes
1861
-
1862
- - An issue with recurrence validation while using editor template has been fixed.
1863
- - An issue with recurring events on day view, created with UNTIL and WEEKLY rule combination has been fixed.
1864
- - An alignment issue with recurrence editor in bootstrap theme has been fixed.
1865
- - An issue with highlighting current day in month view, when `firstDayOfWeek` is set with the value other than `Sunday` has been fixed.
1866
- - An issue while customizing `quick popup` with normal HTML buttons has been fixed.
1867
-
1868
- ## 16.2.41 (2018-06-25)
1869
-
1870
- ### Schedule
1871
-
1872
- #### New Features
1873
-
1874
- - Distinct time interval option with customizable major and minor slots has been introduced to view the appointments clearly and accurately.
1875
- - An enhancement has been made to extend the default view range with customized intervals, to display 'n' number of days, weeks and months.
1876
- - Validation support on recurrence appointment(s) has been added.
1877
- - Multiple resources support has been added with the following options.
1878
- - **Group By Child** - To group the same child resource(s) under different parent resource(s).
1879
- - **Group By Date** - To group the resource(s) on day basis.
1880
- - **Group Editing** - To edit all resource events simultaneously.
1881
- - **Custom Work Days** - To display the custom work days for each resource.
1882
- - Provided public methods to add or remove the resources dynamically.
1883
-
1884
- #### Bug Fixes
1885
-
1886
- - An issue with time format not displaying according to the given culture issue has been fixed.
1887
- - A script error occurring while enabling or disabling the time indicator option in Agenda view issue has been fixed.
1888
- - An issue with event not displayed in day and week views, when set with same start and end time has been fixed.
1889
- - An issue with displaying yearly recurrence event has been fixed.
1890
-
1891
- ##### Breaking Changes
1892
-
1893
- - Type of `id` property within the `eventSettings.field` has been changed from `object` type to `string`.
1894
- - Appearance enhancement has been done on `quick popup` that opens, when single clicked on cells and events. Also, the same `popup` opens on single tap of events on mobile mode.
1895
-
1896
- ## 16.1.37 (2018-04-24)
1897
-
1898
- ### Schedule
1899
-
1900
- #### Bug Fixes
1901
-
1902
- - An issue with recurrence events created with UNTIL rule, which doesn't rendered on day view is fixed.
1903
- - An issue with buttons of quick window not getting disabled, while setting `readonly` property has been fixed.
1904
-
1905
- ## 16.1.28 (2018-03-09)
1906
-
1907
- ### Schedule
1908
-
1909
- #### Bug Fixes
1910
-
1911
- - Problem with all-day appointments that are created for spanned timeline in work week view is fixed.
1912
- - Traversing order of appointments while pressing `Tab` key and `Shift+Tab` combination keys is corrected.
1913
-
1914
- ## 16.1.24 (2018-02-22)
1915
-
1916
- ### Schedule
1917
-
1918
- Schedule is an event calendar which facilitates user with the common Outlook-calendar features, thus allowing the users to plan and manage their appointments and its time in an efficient way.
1919
-
1920
- - **Views** - Schedule is now availed with 6 different view modes – day, week, work week, month, agenda and month agenda. It is possible to configure view-based settings on each view mode. The `Week` view is set as active view by default.
1921
- - **Data binding** - Seamless data binding with various client-side and remote data sources thus allowing the data to load on demand by default to reduce the data transfer and loading time.
1922
- - **Recurrence** - Allows the user to repeat a set of events on a daily, weekly, monthly, or yearly basis.
1923
- - **Template** - The key elements like events, date header, work cells and event tooltip comes with the default template support which allows the flexible end-user customization to embed any kind of text, images, or styles to it.
1924
- - **Time zone** - Regardless of whatever time zone your system follows, Schedule supports setting your own required time zone value to it as well as to each event – thus allowing the events to display on its exact local time.
1925
- - **Customizable working days and hours** - Users can set specific work hour range which is visually differentiated with active colour. Also, the working days collection can be customized with specific days, so that the remaining days will be considered as weekend.
1926
- - **Custom editor template** - Template option is availed for event editor, thus allowing the users to add their own custom editor design and also provides option to add additional fields onto the default event editor.
1927
- - **Adaptive rendering** - Adapts with optimal user interfaces for mobile and desktop form-factors, thus helping the user’s application to scale elegantly across all the form-factors without any additional effort.
1928
- - **Keyboard interaction** - All the common actions such as traversing through the appointments, multiple cell selection, add/edit/delete the appointments, navigate to other views, dates and much more can be performed through keyboard inputs.
1929
- - **Localization** - All the static text and date content can be localized to any desired language. Also, it can be displayed with appropriate time mode and date-format as per the localized language.
1930
- - **RTL** - Supports displaying the component to display in the direction from right to left.