@syncfusion/ej2-angular-schedule 31.2.3-ngcc → 31.2.3

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 (43) hide show
  1. package/CHANGELOG.md +2413 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/index.mjs +12 -0
  4. package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +23 -0
  5. package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +59 -0
  6. package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +25 -0
  7. package/esm2020/src/schedule/headerrows.directive.mjs +66 -0
  8. package/esm2020/src/schedule/resources.directive.mjs +58 -0
  9. package/esm2020/src/schedule/schedule-all.module.mjs +74 -0
  10. package/esm2020/src/schedule/schedule.component.mjs +306 -0
  11. package/esm2020/src/schedule/schedule.module.mjs +61 -0
  12. package/esm2020/src/schedule/toolbaritems.directive.mjs +67 -0
  13. package/esm2020/src/schedule/views.directive.mjs +132 -0
  14. package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
  15. package/fesm2015/syncfusion-ej2-angular-schedule.mjs +829 -0
  16. package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-schedule.mjs +829 -0
  18. package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  19. package/package.json +20 -7
  20. package/public_api.d.ts +1 -1
  21. package/src/index.d.ts +11 -11
  22. package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +11 -5
  23. package/src/recurrence-editor/recurrenceeditor.component.d.ts +33 -30
  24. package/src/recurrence-editor/recurrenceeditor.module.d.ts +11 -5
  25. package/src/schedule/headerrows.directive.d.ts +52 -47
  26. package/src/schedule/resources.directive.d.ts +115 -110
  27. package/src/schedule/schedule-all.module.d.ts +28 -22
  28. package/src/schedule/schedule.component.d.ts +224 -221
  29. package/src/schedule/schedule.module.d.ts +15 -5
  30. package/src/schedule/toolbaritems.directive.d.ts +177 -172
  31. package/src/schedule/views.directive.d.ts +324 -319
  32. package/syncfusion-ej2-angular-schedule.d.ts +5 -0
  33. package/@syncfusion/ej2-angular-schedule.es5.js +0 -955
  34. package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
  35. package/@syncfusion/ej2-angular-schedule.js +0 -894
  36. package/@syncfusion/ej2-angular-schedule.js.map +0 -1
  37. package/LICENSE +0 -10
  38. package/dist/ej2-angular-schedule.umd.js +0 -1114
  39. package/dist/ej2-angular-schedule.umd.js.map +0 -1
  40. package/dist/ej2-angular-schedule.umd.min.js +0 -11
  41. package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
  42. package/ej2-angular-schedule.d.ts +0 -6
  43. package/ej2-angular-schedule.metadata.json +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,2413 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ### Schedule
6
+
7
+ #### Bug fixes
8
+
9
+ - `#I746004` - Fixed an issue where appointments overlapped when a large number of them were rendered.
10
+ - `#I738200` - Fixed an issue where the Scheduler became unresponsive when many appointments overlapped simultaneously.
11
+
12
+ ## 31.2.2 (2025-10-15)
13
+
14
+ ### Schedule
15
+
16
+ #### Bug fixes
17
+
18
+ - `#I757470` - An issue where cells were misaligned and events were added to the wrong cell when using the `enableLazyLoading` property has been fixed.
19
+ - `#I770447` - The issue where the tooltip displayed incorrect content in the `Year` view has been fixed.
20
+
21
+ ## 31.1.21 (2025-09-23)
22
+
23
+ ### Schedule
24
+
25
+ #### Bug fixes
26
+
27
+ - `#I746117`, `#I754057` - An issue where an empty content area was rendered during virtual scrolling when using `rowAutoHeight` in combination with `overscanCount` has been resolved.
28
+ - `#F197352` - An issue that caused appointments to overlap in the `TimelineYear` view has been fixed.
29
+
30
+ ## 31.1.20 (2025-09-10)
31
+
32
+ ### Schedule
33
+
34
+ #### Bug fixes
35
+
36
+ - `#I760538` - The issue where the Edit Event popup was incorrectly displayed for recurring events when `allowEditing` property set to `false` has been resolved.
37
+
38
+ ## 31.1.17 (2025-09-05)
39
+
40
+ ### Schedule
41
+
42
+ #### Features
43
+
44
+ - `#I618429` - Added the `groupIndex` value to the `dateHeaderTemplate` when the date header is grouped by resource. This enables resource-specific customization of date headers. Applicable only for `Day`, `Week`, `WorkWeek`, and `Agenda` views when resource-specific date headers are rendered.
45
+
46
+ #### Bug fixes
47
+
48
+ - `#I744881` - Fixed an issue where the virtual scroll position was not preserved during date navigation when `enablePersistence` was set to true.
49
+ - `#I753562` - Fixed an issue where appointment resizing did not work correctly when using timeline views with header rows.
50
+
51
+ ## 30.1.42 (2025-07-29)
52
+
53
+ ### Schedule
54
+
55
+ #### Bug fixes
56
+
57
+ - `#I745472` - Fixed an issue where drag functionality was not working after being conditionally cancelled for multiple appointments.
58
+ - `#I746809` - Resolved an issue where a script error occurred when closing the Quick Info popup that was customized using `quickInfoTemplates`.
59
+
60
+ ## 30.1.39 (2025-07-08)
61
+
62
+ ### Schedule
63
+
64
+ #### Bug fixes
65
+
66
+ - `#I739675` - The issue with the `maxDate` property preventing events from being displayed on the last date has been resolved.
67
+
68
+ ## 30.1.38 (2025-07-02)
69
+
70
+ ### Schedule
71
+
72
+ - `#I693587` - The issue with resources not rendering correctly in the Scheduler when virtual scrolling was enabled has been fixed.
73
+
74
+ ## 29.2.10 (2025-06-10)
75
+
76
+ ### Schedule
77
+
78
+ - `#F727056` - The issue with CSP occurring in the Schedule component Agenda view has been resolved.
79
+
80
+ ## 29.2.8 (2025-06-03)
81
+
82
+ ### Schedule
83
+
84
+ - `#F715433` - The issue with assigning a direct date time value to the `StartDate` property of recurrence editor
85
+
86
+ ## 29.2.5 (2025-05-21)
87
+
88
+ ### Schedule
89
+
90
+ - `#F723835` - The issue with the Quick Info panel closing unexpectedly on pressing "C" or "X" keys in the Schedule component has been resolved.
91
+
92
+ ## 29.2.4 (2025-05-14)
93
+
94
+ ### Schedule
95
+
96
+ - `F67156` - The issue where clearing the start and end dates and then selecting the All Day checkbox caused a console error in the Schedule popup has been resolved. .
97
+
98
+ ## 29.1.41 (2025-05-06)
99
+
100
+ ### Schedule
101
+
102
+ - `I703204` - Memory leak issue with the current time indicator has been resolved.
103
+ - `F716483` - The issue with the `renderCell` event not being triggered in the Timeline views has been resolved.
104
+ - `#I716164` - The issue with CSP occurring in the Schedule component on Firefox has been resolved.
105
+
106
+ ## 29.1.38 (2025-04-15)
107
+
108
+ ### Schedule
109
+
110
+ - `#F708016` - The issue with the Schedules `virtualScroll` feature causing missing resources while scrolling has been resolved.
111
+ - `I708699` - The issue with the excessive button padding in the Toolbar Calendar has been resolved.
112
+
113
+ ## 29.1.37 (2025-04-08)
114
+
115
+ ### Schedule
116
+
117
+ - `#I704571` - The issue with non-integer pixel values causing incorrect time when resizing an appointment has been resolved.
118
+
119
+ ## 29.1.33 (2025-03-25)
120
+
121
+ ### Schedule
122
+
123
+ #### Features
124
+
125
+ - Provided support to prevent the overlapping appointments by setting `allowOverlap` property as `false`. It prevents users from scheduling multiple appointments at the same time in the same time slot.
126
+ - A new callback event, `tooltipOpen`, has been added to control when an appointment tooltip is shown. You can use this event to prevent the tooltip from appearing.
127
+ - A new callback event, `beforePrint`, is triggered when the print event is called. It allows for customization before the print action begins.
128
+ - `#I254712` - A new callback event, `excelExport`, is available before the Excel export process starts. This event lets you customize the Excel worksheet before it's exported.
129
+ - `#I659693` - Provided the `overscanCount` property to adjust the number of additional resources to render outside the visible area during virtual scrolling. This helps achieve smoother scrolling by pre-loading data just outside the visible region.
130
+ - `#700794` - Provided `created` and `destroyed` callback events support for recurrence editor.
131
+
132
+ #### Bug fixes
133
+
134
+ - `#I694546` - An issue where the horizontal scrollbar appears when enabling `rowAutoHeight` in the Month view has been resolved.
135
+ - `#I697893` - The issue with the Schedule `virtualScroll` causing a script error on horizontal scrolling has been fixed.
136
+
137
+ ## 28.2.11 (2025-03-11)
138
+
139
+ ### Schedule
140
+
141
+ #### Bug fixes
142
+
143
+ - `#I693788` - The issue with `MaxDate` in the Recurrence Editor not working correctly has been fixed.
144
+
145
+ - `#I689726` - The issue where selecting one event and then attempting to resize or drag another event caused a problem with the previously selected appointment has been fixed.
146
+
147
+ ## 28.2.7 (2025-02-25)
148
+
149
+ ### Schedule
150
+
151
+ #### Bug fixes
152
+
153
+ - `#I678690` - The issue with event resizing in the Scheduler not functioning correctly on touchscreens has been fixed.
154
+
155
+ ## 28.2.6 (2025-02-18)
156
+
157
+ ### Schedule
158
+
159
+ #### Bug fixes
160
+
161
+ - `#I682735`, `#I680637` - An issue where the current time indicator in the Scheduler is rendered in the incorrect position in timeline views has been resolved.
162
+
163
+ - `#F64855` - An issue where the selected date not maintained in Scheduler `MonthAgenda` view has been resolved.
164
+
165
+ ## 28.2.5 (2025-02-11)
166
+
167
+ ### Schedule
168
+
169
+ #### Bug fixes
170
+
171
+ - `#I682735`, `#I680637` - An issue where the current time indicator in the Scheduler is rendered in the incorrect position in vertical views has been resolved.
172
+
173
+ ## 28.2.4 (2025-02-04)
174
+
175
+ ### Schedule
176
+
177
+ #### Bug fixes
178
+
179
+ - `#I680887` - An issue where the Scheduler year view popup does not close when navigating to other views has been resolved.
180
+
181
+ - `#F195634` - An issue with scheduler event misalignment in timeline Day View with custom `timeScale` and `interval` settings has been resolved.
182
+
183
+ - `#F195703` - An issue with the Schedule `actionCompleteArgs` to ensure `deletedRecords` contain the correct edited timezone start and end time for deleted appointments has been resolved.
184
+
185
+ ## 28.2.3 (2025-01-29)
186
+
187
+ ### Schedule
188
+
189
+ #### Bug fixes
190
+
191
+ - `#F195714` - The issue where the `showWeekNumber` property was enabled but the calendar did not display the week numbers in the Scheduler has been resolved.
192
+ - `#I679226` - An issue with swipe functionality not working in the custom month view in mobile mode has been resolved.
193
+
194
+ ## 28.1.39 (2024-01-14)
195
+
196
+ ### Schedule
197
+
198
+ #### Bug fixes
199
+
200
+ - `#I665787` - The issue where the scheduler tooltip rendered empty when using a template with large content has been resolved.
201
+
202
+ ## 28.1.38 (2025-01-07)
203
+
204
+ ### Schedule
205
+
206
+ #### Bug fixes
207
+
208
+ - `#F195575` - An issue with scroll dragging persists after releasing mouse button outside the schedule component has been fixed.
209
+ - `IF667909` - An issue where the horizontal scrollbar would reset its position during window resizing has been fixed.
210
+
211
+ ## 28.1.37 (2024-12-31)
212
+
213
+ ### Schedule
214
+
215
+ #### Bug fixes
216
+
217
+ - `#F195371` - An issue where dragging all-day event in timeline views incorrectly occupies two days has been fixed.
218
+ - `#I664757` - An accessibility issue where the `aria-selected` attribute was present on `<td>` elements and violated accessibility guidelines has been fixed.
219
+
220
+ ## 28.1.35 (2024-12-18)
221
+
222
+ ### Schedule
223
+
224
+ #### Bug fixes
225
+
226
+ - `#I659549` - An issue with dragging longer appointments to the bottom of the vertical views of the Scheduler has been fixed.
227
+
228
+ ## 28.1.33 (2024-12-12)
229
+
230
+ ### Schedule
231
+
232
+ #### Features
233
+
234
+ - `#I354565` - Provided support to enables clipboard functionality for appointments, allowing them to be copied using keyboard shortcuts and pasted onto the Scheduler by setting `allowClipboard` property as `true`. When set to `true`, users can use keyboard shortcuts to cut, copy appointments and paste them into different time slots.
235
+
236
+ | Keys | Description |
237
+ |-----|-----|
238
+ | <kbd>Ctrl + X</kbd> | To cut the selected appointment. |
239
+ | <kbd>Ctrl + C</kbd> | To copy the selected appointment. |
240
+ | <kbd>Ctrl + V</kbd> | To paste the cut/copied appointment. |
241
+
242
+ Methods `cut`, `copy`, and `paste` have been implemented to allow users to perform clipboard actions on appointments.
243
+
244
+ - Provided method `getViewDates` to get the previous, next, or current view render dates.
245
+ - Provided method `getDateRangeText` to get the date range text for the given date collection.
246
+
247
+ ## 27.2.5 (2024-12-03)
248
+
249
+ ### Schedule
250
+
251
+ #### Bug fixes
252
+
253
+ - `#I657588` - The issue with the schedule's current time indicator not being properly aligned has been resolved
254
+
255
+ ## 27.2.3 (2024-11-21)
256
+
257
+ ### Schedule
258
+
259
+ #### Bug fixes
260
+
261
+ - `#F194681` - An issue where a script error occurred while editing an existing event in the scheduler component has been resolved.
262
+
263
+ ## 27.2.2 (2024-11-15)
264
+
265
+ ### Schedule
266
+
267
+ #### Bug fixes
268
+
269
+ - `#I647287` - An issue where an Appointments are rendered in the incorrect time slots when the time zone is set to MET has been resolved.
270
+
271
+ ## 27.1.58 (2024-11-05)
272
+
273
+ ### Schedule
274
+
275
+ #### Bug fixes
276
+
277
+ - `#I647902` - An issue where a script error occurred while click the close icon in print window has been resolved.
278
+
279
+ ## 27.1.57 (2024-10-29)
280
+
281
+ ### Schedule
282
+
283
+ #### Bug fixes
284
+
285
+ - `#I641069` - An issue when dragging an event, the first cell of the hour will be selected and highlighted has been resolved.
286
+ - `#I643159` - An issue when weekly recurrence rule is rendered in the wrong position when setting the `firstDayOfWeek` has been resolved.
287
+ - `#FB62128` - An issue causing events to display incorrectly when a weekly recurrence rule with `BDAY` and a specified timezone is applied has been resolved.
288
+
289
+ ## 27.1.56 (2024-10-23)
290
+
291
+ ### Schedule
292
+
293
+ #### Bug fixes
294
+
295
+ - `#I638628` - The issue with the `renderCell` event not being triggered in the Agenda view has been resolved.
296
+
297
+ ## 27.1.55 (2024-10-22)
298
+
299
+ ### Schedule
300
+
301
+ #### Bug fixes
302
+
303
+ - `#I592841` - An issue where resizing was not functioning correctly in timeline views when using the `startHour` and `endHour` properties has been resolved.
304
+
305
+ ## 27.1.53 (2024-10-15)
306
+
307
+ ### Schedule
308
+
309
+ #### Bug fixes
310
+
311
+ - `#FB61537` - An issue where a script error occurred when attempting to save an event after adding the `NumericTextBox` component in the editor template has been resolved.
312
+ - `#FB61371` - An issue affecting the identification of the `startTime` and `endTime` properties within the `eventRenderedArgs` for spanned events in the Month view has been resolved.
313
+ - `#I640650` - An issue where a script error occurred while setting `setWorkHours` in DST time has been resolved.
314
+
315
+ ## 27.1.52 (2024-10-08)
316
+
317
+ ### Schedule
318
+
319
+ #### Bug fixes
320
+
321
+ - `#FB61586` - The issue with the schedule component tooltip rendering outside the viewport has been fixed.
322
+ - `#I610923` - An issue where the appointments are getting overlapped due to appointment width is not calculated properly has been fixed.
323
+
324
+ ## 27.1.51 (2024-09-30)
325
+
326
+ ### Schedule
327
+
328
+ #### Bug fixes
329
+
330
+ - `#I617009` - An issue where the appointment drag position is not updating according to the mouse cursor in the vertical views of the schedule has been fixed.
331
+ - `#I569000` - The issue with the current time indicator displaying discrepancies compared to the time scale on the start and end days of daylight saving time in the vertical view has been resolved.
332
+
333
+ ## 27.1.50 (2024-09-24)
334
+
335
+ ### Schedule
336
+
337
+ #### Bug fixes
338
+
339
+ - `#FB60159` - An issue where the monthly recurrence appointment was rendered on the wrong date without considering the `StartTimezone` value of the appointment is fixed.
340
+
341
+ ## 27.1.48 (2024-09-18)
342
+
343
+ ### Schedule
344
+
345
+ #### Features
346
+
347
+ - `#I546459` - Improved timeline views virtual scrolling performance.
348
+ - Provided new keyboard shortcuts to open the editor window and navigate to today's date.
349
+
350
+ | Keys | Description |
351
+ |-----|-----|
352
+ | <kbd>Shift + Alt + N</kbd> | To open a new editor window. |
353
+ | <kbd>Shift + Alt + Y</kbd> | To navigate today date. |
354
+
355
+ #### Bug fixes
356
+
357
+ - `#I194307` - An issue where the `firstDayOfWeek` property was not working in the year view's specific settings has been fixed.
358
+
359
+ ## 26.2.14 (2024-09-10)
360
+
361
+ ### Schedule
362
+
363
+ #### Bug fixes
364
+
365
+ - `#I621521` - An issue where the tooltip shows the wrong end time value when the start and end of the appointment are the same has been fixed.
366
+ - `#FB60391` - Deleted recurrence appointment added into the `changedRecords` instead of `deletedRecords` and upon clicking `YES` in the series edit confirmation alert to delete the individual occurrences the deleted records not included in the `deletedRecords` in the `actionBegin` event has been fixed.
367
+
368
+ ## 26.2.12 (2024-09-03)
369
+
370
+ ### Schedule
371
+
372
+ #### Bug fixes
373
+
374
+ - `#I617009` - An issue where the drag clone position not updated based on mouse cursor position in the vertical views has been fixed.
375
+
376
+ ## 26.2.10 (2024-08-20)
377
+
378
+ ### Schedule
379
+
380
+ #### Bug fixes
381
+
382
+ - `#I607401` - An issue where the events are not aligned in correct position when Scheduler height changed dynamically has been fixed.
383
+
384
+ ## 26.2.4 (2024-07-24)
385
+
386
+ ### Schedule
387
+
388
+ #### Bug fixes
389
+
390
+ - `#I605064` - An issue with the weekly recurrence appointment rendering while using the repeat interval value of more than 1 has been fixed.
391
+ - `#I600060` - The issue where the drag clone fails to follow the cursor position during dragging, with cell widths set to auto, has been resolved.
392
+
393
+ ## 26.1.41 (2024-07-09)
394
+
395
+ ### Schedule
396
+
397
+ #### Bug fixes
398
+
399
+ - `#I577891` - An issue with the virtual scrolling performance in the vertical view has been addressed.
400
+ - `#I589776` - An issue where the events are moved to next or previous week while multi dragging has been fixed.
401
+ - `#F188870` - An issue with the current time indicator throws the console error when the resource data source is empty has been fixed.
402
+
403
+ ## 26.1.40 (2024-07-02)
404
+
405
+ ### Schedule
406
+
407
+ #### Bug fixes
408
+
409
+ - `#I591715` - An issue with the resizing event in the scheduler, using the enabled interval and header rows property in the Timeline view, which miscalculated the end time, has been fixed.
410
+
411
+ - `#I603711` - An issue where the custom editor window did not destroy the rich text editor component has been fixed.
412
+
413
+ ## 26.1.39 (2024-06-25)
414
+
415
+ ### Schedule
416
+
417
+ #### Bug fixes
418
+
419
+ - `#F188618` - The issue with the date time format during CSV export in excel has been resolved.
420
+ - `#I602738` - An issue with the print rendered empty page on the print preview window for vertical views has been fixed.
421
+ - `#I603067` - An issue with same duration events are overlapped each other in the vertical view has been fixed.
422
+
423
+ ## 26.1.38 (2024-06-19)
424
+
425
+ ### Schedule
426
+
427
+ #### Bug fixes
428
+
429
+ - `#I587318` - Issues in the Schedule aria-label attributes are fixed.
430
+ - `#I583567` - Resizing the appointment to the last column of the timeline views is not working issue has been resolved.
431
+ - `#I592841` - The issue with the appointment width calculation, when the `endHour` and `timeScale` properties are customized is fixed.
432
+ - `#FB51620` - The `setWorkHours` method sets work hours to the wrong time range if today's date is a DST start is fixed.
433
+ - `#I583293` - The quick info popup shows the wrong time instead of the clicked cell time and adds the appointment to the wrong time if the clicked cell is in the DST start date is fixed.
434
+
435
+ - `#I597851` - The issue with the event template in the Angular implementation, where it wasn't printing properly in the scheduler, has been fixed.
436
+
437
+ ## 26.1.35 (2024-06-11)
438
+
439
+ ### Schedule
440
+
441
+ #### Bug fixes
442
+
443
+ - `#I587571` - The issue with the `refreshLayout` method causing UI disruptions when utilizing `allowVirtualscrolling` has been resolved.
444
+ - `#FB57769` - An issue with the events is not overlap properly when the event has same start and end time.
445
+
446
+ ## 25.2.6 (2024-05-28)
447
+
448
+ ### Schedule
449
+
450
+ #### Bug fixes
451
+
452
+ - `#I586530` - The issue with `refreshTemplates` caused alignment issues in resource header has been resolved.
453
+
454
+ ## 25.2.4 (2024-05-14)
455
+
456
+ ### Schedule
457
+
458
+ #### Bug fixes
459
+
460
+ - `#I539772` - Appointment drag and drop issue in iPad is fixed.
461
+ - `#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.
462
+ - `#I583762` - The issue with `refreshTemplates` caused alignment issues in date header has been resolved.
463
+
464
+ ## 25.2.3 (2024-05-08)
465
+
466
+ ### Schedule
467
+
468
+ #### Bug fixes
469
+
470
+ - `#I582520` - The issue with `scrollToResource` not working in the month view has been resolved.
471
+
472
+ - `#I528774` - The `eventTemplate` causing memory leak on date navigation has been fixed.
473
+
474
+ ## 25.1.42 (2024-04-30)
475
+
476
+ ### Schedule
477
+
478
+ #### Bug fixes
479
+
480
+ - `#I583674` - An issue where the text for today button was not displayed in the toolbar has been fixed.
481
+
482
+ - `#I577108` - An issue with `quickInfotemplates` is not being properly destroyed has been fixed.
483
+
484
+ ## 25.1.41 (2024-04-23)
485
+
486
+ ### Schedule
487
+
488
+ #### Bug fixes
489
+
490
+ - `#I569000` - The issue with the Timeslots show difference than the time scale on the day light saving start and end day has been resolved.
491
+ - An issue with XSS vulnerability identified in the editor window has been fixed.
492
+
493
+ ## 25.1.39 (2024-04-09)
494
+
495
+ ### Schedule
496
+
497
+ #### Bug fixes
498
+
499
+ - `#I556008` - An issue with the reading and restoring the current resource in compact view has been fixed.
500
+ - `#I550494` - An issue with appointments overlapping while using `sortComparer` in the timeline views has been fixed.
501
+ - `#I549215` - The issue with the `refreshLayout` method causing UI disruptions when utilizing `allowVirtualscrolling` has been resolved.
502
+
503
+ ## 25.1.37 (2024-03-26)
504
+
505
+ ### Schedule
506
+
507
+ #### Bug fixes
508
+
509
+ - `#I566544` - An issue with `aria-labelledby` accessibility issue in the recurrence editor has been fixed.
510
+ - `#I549259` - An issue where the weekend dates are rendered in the Agenda view after setting up the `showWeekend` property to `false` has been fixed.
511
+
512
+ ## 25.1.35 (2024-03-15)
513
+
514
+ ### Schedule
515
+
516
+ #### New Features
517
+
518
+ - `#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`.
519
+
520
+ ## 24.2.8 (2024-02-27)
521
+
522
+ ### Schedule
523
+
524
+ #### Bug fixes
525
+
526
+ - `#I549187` - An issue with the virtual scroll with `rowAutoHeight` has been resolved.
527
+
528
+ ## 24.2.4 (2024-02-06)
529
+
530
+ ### Schedule
531
+
532
+ #### Bug fixes
533
+
534
+ - `#I540139` - The appointment disappearance issue while using the `rowAutoHeight` has been resolved.
535
+ - `#I524766` - An issue related to scaling has been fixed.
536
+
537
+ ## 24.2.3 (2024-01-31)
538
+
539
+ ### Schedule
540
+
541
+ #### Bug fixes
542
+
543
+ - `#I541680` - An issue related to more indicator in the timeline views has been fixed.
544
+
545
+ ## 24.1.41 (2023-12-18)
546
+
547
+ ### Schedule
548
+
549
+ #### New Features
550
+
551
+ - `#I227283`, `#I233208`, `#F170880` - Provided support to customize the scheduler toolbar items using the `toolbarItems` property.
552
+ - `#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
553
+
554
+ #### Bug fixes
555
+
556
+ - `#I519049` - An issue related to events are overlapping when they are on same date in vertical year view has been resolved.
557
+ - `#F185646` - An issue with page crashes when schedule appointment drag-drops over the calendar has been fixed.
558
+ - `#F185139` - An issue related to events are positioned incorrectly when using `firstDayOfWeek` with different time slot intervals has been resolved.
559
+ - `#FB47966` - An issue with timezone setting not working for all day events has been fixed.
560
+
561
+ ## 23.2.4 (2023-11-20)
562
+
563
+ ### Schedule
564
+
565
+ #### Bug fixes
566
+
567
+ - `#I518285` - An issue related to incorrect start day name on the week header in year view has been resolved.
568
+
569
+ ## 23.1.44 (2023-11-07)
570
+
571
+ ### Schedule
572
+
573
+ #### Bug fixes
574
+
575
+ - `#I513168` - An issue related to misplaced events in the print document has been resolved.
576
+
577
+ ## 23.1.40 (2023-10-10)
578
+
579
+ ### Schedule
580
+
581
+ #### Bug fixes
582
+
583
+ - `#I184692` - An issue with the date navigation while clicking on the month date on mobile mode has been fixed.
584
+ - `#I504010` - The console error occurs when dragging events outside of the Scheduler area has been fixed.
585
+
586
+ ## 23.1.39 (2023-10-04)
587
+
588
+ ### Schedule
589
+
590
+ #### Bug fixes
591
+
592
+ - `#I503155` - Resolved an accessibility concern by including the necessary form labels in the Scheduler editor window.
593
+
594
+ ## 23.1.38 (2023-09-26)
595
+
596
+ ### Schedule
597
+
598
+ #### Bug fixes
599
+
600
+ - `#I501151` - An issue where the `eventDoubleClick` event is not triggering has been fixed.
601
+
602
+ ## 23.1.36 (2023-09-15)
603
+
604
+ ### Schedule
605
+
606
+ #### Features
607
+
608
+ - `#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.
609
+ - `#I397280`, `#I296716`, `#F184285`, `#FB37717` - Provided `virtualScrollStart` and `virtualScrollStop` event support to notify the resource virtual scrolling actions of Scheduler.
610
+ - `#I339243`, `#I365629`, `#F174284` - Provided support to customize the header and footer of editor window.
611
+
612
+ #### Bug fixes
613
+
614
+ - `#F184224` - An issue with start and end date query parameters passed incorrectly, when timezone is applied for scheduler has been fixed.
615
+ - `#I499207` - An issue with quick popup not opens on selected cell, when `allowMultiRowSelection` property disabled has been fixed.
616
+
617
+ ## 22.2.12 (2023-09-05)
618
+
619
+ ### Schedule
620
+
621
+ #### Bug fixes
622
+
623
+ - `#I492172` - An issue with recurrence exception not calculated based on scheduler timezone has been fixed.
624
+ - `#I490434` - An issue with current time indicator positioned wrongly when header rows is applied in timeline views has been fixed.
625
+ - `#I497178` - An issue with quick popup opens for unselected resource cells has been fixed.
626
+
627
+ ## 22.2.11 (2023-08-29)
628
+
629
+ ### Schedule
630
+
631
+ #### Bug fixes
632
+
633
+ - `#I488001` - An issue where the description field of an ICS file was not being parsed correctly upon import into the Schedule has been fixed.
634
+
635
+ ## 22.2.5 (2023-07-27)
636
+
637
+ ### Schedule
638
+
639
+ #### Bug fixes
640
+
641
+ - `#I480473` - An issue with "Role not inside the required context" accessibility issue in the Schedule component's recurrence editor has been fixed.
642
+ - `#I474091` - The issue of duplicate events being created after changing the recurrence of certain events has been fixed.
643
+ - `#I478902` - Performance issue in calculating scrollbar width has been fixed.
644
+
645
+ ## 22.1.38 (2023-07-11)
646
+
647
+ ### Schedule
648
+
649
+ #### Bug fixes
650
+
651
+ - `#F182714` - An issue with Escape key will prevent the cell selection when `allowInline` property enabled has been fixed.
652
+
653
+ ## 22.1.34 (2023-06-21)
654
+
655
+ ### Schedule
656
+
657
+ #### New Features
658
+
659
+ - `#I438319` - Provided an option to customize the recurrence end type which allows users to tailor the recurrence editor to their unique needs and preferences.
660
+
661
+ #### Bug fixes
662
+
663
+ - `F182696` - An issue with Keyboard scroll behaviour not working has been fixed.
664
+ - `I470178` - An issue with Edit occurrence appointment not rescheduled properly and shows occurrence alert has been fixed.
665
+ - `#I182714` - Resolved the issue where pressing the `Escape` key while navigating the scheduler with the keyboard would return to the previously selected cell.
666
+
667
+ ## 21.2.10 (2023-06-13)
668
+
669
+ ### Schedule
670
+
671
+ #### Bug fixes
672
+
673
+ - `#I464944` - An issue with time indicator rendered in wrong position when `startHour` and `endHour` property applied has been fixed.
674
+
675
+ ## 21.2.9 (2023-06-06)
676
+
677
+ ### Schedule
678
+
679
+ #### Bug fixes
680
+
681
+ - `#I461489` - An issue with the dragging appointment is flickering on the topmost region has been fixed.
682
+ - `#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.
683
+ - `#I459642` - An issue with Appointment end date is wrong in `popupOpenEventArgs` has been fixed.
684
+
685
+ ## 21.2.6 (2023-05-23)
686
+
687
+ ### Schedule
688
+
689
+ #### Bug fixes
690
+
691
+ - `#I459507` - An issue with the following events option not being displayed while editing the edited occurrence of the recurrence series has been fixed.
692
+
693
+ ## 21.2.5 (2023-05-16)
694
+
695
+ ### Schedule
696
+
697
+ #### Bug fixes
698
+
699
+ - `#I459154` - An issue with Schedule performance while rendering large set all-day appointments in vertical views has been fixed.
700
+
701
+ ## 21.2.4 (2023-05-09)
702
+
703
+ ### Schedule
704
+
705
+ #### Bug fixes
706
+
707
+ - `#I457705` - An issue with appointment not dropped on target cell when start and end time is same has been fixed.
708
+ - `#I457928` - An issue with the appointment misalignment has been fixed.
709
+
710
+ ## 21.1.41 (2023-04-18)
711
+
712
+ ### Schedule
713
+
714
+ #### Bug fixes
715
+
716
+ - `#I449384` - An issue with the numeric textbox inside the `editorTemplate` has been fixed.
717
+ - `#I454841`, `#I455215` - An issue with the appointment subject, quick info popup subject, and description values doesn't show in HTML format has been fixed.
718
+ - `#I451218` - An issue with the clone element was hidden while dragging when the `eventDragArea` property is enabled has been fixed.
719
+
720
+ ## 21.1.39 (2023-04-11)
721
+
722
+ ### Schedule
723
+
724
+ #### Bug fixes
725
+
726
+ - `#I425939` - Schedule virtual scrolling appointment rendering performance improved.
727
+ - `#F181250` - Schedule layout rendering performance improved with `timezone` property.
728
+ - `#I328355`, `#I449137` - Provided support to bind methods in `JS` way for the Schedule events in the `print` method `printOptions`.
729
+
730
+ ## 21.1.38 (2023-04-04)
731
+
732
+ ### Schedule
733
+
734
+ #### Bug fixes
735
+
736
+ - `#I448740` - An issue with the current date styles in month agenda view has been fixed.
737
+ - `#I445875` - An issue with the scheduler not rendering the all more indicators while resizing the browser window at specific resolutions has been fixed.
738
+
739
+ ## 21.1.35 (2023-03-23)
740
+
741
+ ### Schedule
742
+
743
+ #### New Features
744
+
745
+ - `#I324269`, `#I347160` - Provided support to display multi month event as single event in vertical orientation of timeline year view.
746
+ - `#I419677` - Provided the support to sanitize the appointment inputs, improving the security of the Scheduler component.
747
+ - `#I425713` - Provided in-built filter support to the Scheduler component, allowing users to easily filter events when requesting data from the server.
748
+ - `#FB40709` - Provided `generateEventOccurrences` public method to retrieve all the occurrences from the series.
749
+ - `#I423939` - Provided support to render the schedule timeline views without horizontal scrollbar.
750
+
751
+ #### Bug fixes
752
+
753
+ - `#I442920` - An issue with appointments misaligned in timeline year view with `ignoreWhiteSpace` property has been fixed.
754
+
755
+ ## 20.4.53 (2023-03-07)
756
+
757
+ ### Schedule
758
+
759
+ #### Bug fixes
760
+
761
+ - `#I441823, F180833` - An issue with a script error while customizing the recurrence editor repeat type option in the Schedule editor has been fixed.
762
+
763
+ ## 20.4.52 (2023-02-28)
764
+
765
+ ### Schedule
766
+
767
+ #### Bug fixes
768
+
769
+ - `#I440832` - An issue with drag clone event were hidden, when dragging multiple appointments with `startHour` and `endHour` has been fixed.
770
+ - `#I441311` - An issue with `getSelectedElements` public method return the selected cells in wrong order has been fixed.
771
+
772
+ ## 20.4.51 (2023-02-21)
773
+
774
+ ### Schedule
775
+
776
+ #### Bug fixes
777
+
778
+ - `#I438207` - An issue with `select` event not invoked on cell selection through keyboard navigation has been fixed.
779
+
780
+ ## 20.4.49 (2023-02-07)
781
+
782
+ ### Schedule
783
+
784
+ #### Bug fixes
785
+
786
+ - `#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.
787
+
788
+ ## 20.4.48 (2023-02-01)
789
+
790
+ ### Schedule
791
+
792
+ #### Bug fixes
793
+
794
+ - `#I422532` - An issue with swiping animation is slow on date navigation in iPad device has been fixed.
795
+ - `#I426228` - An issue with drag and drop with timeline view header rows has been fixed.
796
+
797
+ ## 20.4.44 (2023-01-18)
798
+
799
+ ### Schedule
800
+
801
+ #### Bug fixes
802
+
803
+ - `#I414149` - An issue with editor window not open in iPad device has been fixed.
804
+ - `#I425181` - An issue with wrongly shown the occurrence alert while editing title of single occurrence of daily recurrence event has been fixed.
805
+ - `#I427296` - An issue with wrongly shown the occurrence alert while editing the date of single occurrence of weekly recurrence event has been fixed.
806
+
807
+ ## 20.4.43 (2023-01-10)
808
+
809
+ ### Schedule
810
+
811
+ #### Bug fixes
812
+
813
+ - `#I425940` - An issue with adding an aria-pressed attribute to the appointment has been fixed.
814
+ - `#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.
815
+
816
+ ## 20.4.42 (2023-01-04)
817
+
818
+ ### Schedule
819
+
820
+ #### Bug fixes
821
+
822
+ - `#I425268` - An issue with drag and drop flickering with `eventDragArea` in timeline views has been fixed.
823
+ - `#I424662` - An issue with appointment resizing in month view with scrollbar has been fixed.
824
+
825
+ ## 20.4.38 (2022-12-21)
826
+
827
+ ### Schedule
828
+
829
+ #### New Features
830
+
831
+ - `#I384604` - Provided custom workdays support when resources are grouped by date.
832
+ - `#I394207` - Provided `closeTooltip` method to close the appointment tooltip programmatically.
833
+ - `#I399939` - Provided `dateRangeTemplate` template to customize the header date range in scheduler.
834
+
835
+ ## 20.3.58 (2022-11-22)
836
+
837
+ ### Schedule
838
+
839
+ #### Bug fixes
840
+
841
+ - `#F178747` - An issue with Appointments positioning when navigate to the next date via swiping in mobile mode has been fixed.
842
+
843
+ ## 20.3.57 (2022-11-15)
844
+
845
+ ### Schedule
846
+
847
+ #### Bug fixes
848
+
849
+ - `#I415847` - An issue with Edit recurrence series to greater than its end date has been fixed.
850
+ - `#I415323` - An issue with timeline month view appointment flickers on initial resizing has been fixed.
851
+
852
+ ## 20.3.56 (2022-11-08)
853
+
854
+ ### Schedule
855
+
856
+ #### Bug fixes
857
+
858
+ - `#F178302` - An issue with being unable to inline edit when using `eventTemplate` has been fixed.
859
+ - `#F178112` - An issue with "Misalignment occurring on zoom-in zoom-out with the scheduler" has been fixed
860
+
861
+ ## 20.3.52 (2022-10-26)
862
+
863
+ ### Schedule
864
+
865
+ #### Bug fixes
866
+
867
+ - `#F177962` - An issue with displaying yearly recurrence event has been fixed.
868
+ - `#I407566` - An issue with Importing exported ICS file with the edited recurrence event causes issue while editing the recurrence event has been fixed.
869
+ - `#F411508` - The issue Error throws when resources with no child is selected in the Editor window has been fixed.
870
+ - `#I411253` - Scheduler performance issue in virtual scrolling has been fixed.
871
+ - `#I412237` - An issue with Delete action through keyboard not working on Schedule on the MAC OS has been fixed.
872
+ - `F178167` - An issue with navigation actions not working while performing swipe on the appointments in mobile mode has been fixed.
873
+
874
+ ## 20.3.49 (2022-10-11)
875
+
876
+ ### Schedule
877
+
878
+ #### Bug fixes
879
+
880
+ - `#I407566` - An issue with Importing exported ICS file with the edited recurrence event causes issue while editing the recurrence event has been fixed.
881
+
882
+ ## 20.3.47 (2022-09-29)
883
+
884
+ ### Schedule
885
+
886
+ #### New Features
887
+
888
+ - `#I329117` - Provided option to disable the date navigation via touch swipe.
889
+ - `#F171009`, `#FB3560`, `#FB30983`, `#FB31560`, `#FB36386` - Provided virtual scrolling support to Vertical Day, Week, and Month views.
890
+ - Provided cell template, day header template and month header template support for Year view.
891
+
892
+ #### Bug fixes
893
+
894
+ - `#I406122` - An issue with Recurrence appointment rendered after the end time on DST timezone has been fixed.
895
+
896
+ - `#I405129` - An issue with Drag and drop is slow, when using `eventTemplate` has been fixed.
897
+
898
+ ## 20.2.50 (2022-09-20)
899
+
900
+ ### Schedule
901
+
902
+ #### Bug fixes
903
+
904
+ - `#I405416` - An issue with next date navigation arrow shown when the upcoming date is greater than `maxDate` has been fixed.
905
+
906
+ ## 20.2.43 (2022-08-08)
907
+
908
+ ### Schedule
909
+
910
+ #### Bug fixes
911
+
912
+ - `#I392060` - An issue with `scrollTo` method not working in timeline views has been fixed.
913
+
914
+ ## 20.2.40 (2022-07-26)
915
+
916
+ ### Schedule
917
+
918
+ #### Bug fixes
919
+
920
+ - `#I392060` - An issue with Appointments start and end time were changed on schedule property change has been fixed.
921
+
922
+ ## 20.2.38 (2022-07-12)
923
+
924
+ ### Schedule
925
+
926
+ #### Bug fixes
927
+
928
+ - `#F172936` - An issue with Form validator instance not available in `popupOpen` event of Scheduler has been fixed.
929
+ - `#F175741` - An issue with UID of the appointments varies every time while exporting appointments in ICS file has been fixed.
930
+ - `#I379499` - An issue with Recurrence appointments start and end times are not changed based on DST time zone has been fixed.
931
+
932
+ ## 20.2.36 (2022-06-30)
933
+
934
+ ### Schedule
935
+
936
+ #### New Features
937
+
938
+ - `#I357693`, `#I385560` - Provided a public method `openQuickInfoPopup` to open the quick popup programmatically.
939
+ - `#I307933` - Provided support to specify custom separator when exporting Scheduler events to CSV export.
940
+
941
+ #### Bug Fixes
942
+
943
+ - `#I385411` - An issue with Weekly recurrence appointments not shown in day view has been fixed.
944
+
945
+ ## 20.1.61 (2022-06-21)
946
+
947
+ ### Schedule
948
+
949
+ #### Bug Fixes
950
+
951
+ - `#I380532` - An issue with Multiple appointments dragged while performing drag action with a single appointment has been fixed.
952
+ - `#I380576` - An issue with drag appointment clone position with enabled `rowAutoHeight` has been fixed.
953
+ - `#I384326` - An issue with html tag as appointment subject in quick popup header has been fixed.
954
+ - `#I383234` - An issue with `scrollTo` method not working with date when enabled group `byDate` has been fixed.
955
+ - `#F174691` - An issue with header misalignment in month view on safari browser has been fixed.
956
+
957
+ ## 20.1.57 (2022-05-24)
958
+
959
+ ### Schedule
960
+
961
+ #### Bug Fixes
962
+
963
+ - `#I379346` - An issue with appointments rendered in start and end hour range in vertical views has been fixed.
964
+ - `#I379197` - An issue with normal appointment rendered in all day row in DST time zone has been fixed.
965
+
966
+ ## 20.1.55 (2022-05-12)
967
+
968
+ ### Schedule
969
+
970
+ #### Bug Fixes
971
+
972
+ - `#I374675` - The appointment border maintained after deselection on multiple appointment selections has been fixed.
973
+ - `#I373707` - An issue with appointments rendered in the min-max date range in vertical views has been fixed.
974
+
975
+ ## 20.1.50 (2022-04-19)
976
+
977
+ ### Schedule
978
+
979
+ #### Bug Fixes
980
+
981
+ - `#I373678` - An issue with the recurrence appointment time change in the DST time zone has been fixed.
982
+ - `#I372043` - An issue with the appointment rendering performance of the month view has been fixed.
983
+ - `#I373179` - The Schedule `exportToICalendar` method throws a script error on exporting events issue has been fixed.
984
+ - `#I373707` - An issue with the appointments in the min-max date range not rendered in the month view has been fixed.
985
+
986
+ ## 20.1.48 (2022-04-12)
987
+
988
+ ### Schedule
989
+
990
+ #### Bug Fixes
991
+
992
+ - `#F173985` - An issue with duplicate cells rendered when the time scale interval set as 1440 has been fixed.
993
+
994
+ ## 20.1.47 (2022-04-04)
995
+
996
+ ### Schedule
997
+
998
+ #### New Features
999
+
1000
+ - `#I305258`, `#FB20522`, `#FB20233` - Provided virtual scrolling support for timeline year view with vertical orientation.
1001
+
1002
+ #### Bug Fixes
1003
+
1004
+ - `#I368002, #I369932` - A issue with cell height not updated property based on appointment rendering while row auto height enabled has been fixed.
1005
+ - `#I368806` - An issue with an incorrect end date in the editor when using `openEditor` method has been fixed.
1006
+ - `#I367110` - An issue with more indicator count value is wrong in month view has been fixed.
1007
+ - `#I370378` - An issue with the wrong count of occurrences rendered when clear and set up until date value again has been fixed.
1008
+ - `#F172905` - An issue with scroll position not maintained for timeline year and timeline month views has been fixed.
1009
+
1010
+ ## 19.4.50 (2022-02-08)
1011
+
1012
+ ### Schedule
1013
+
1014
+ #### Bug Fixes
1015
+
1016
+ - `#I362813` - An issue with appointment start and end time changes on each schedule layout resize action while using `timezone` property has been fixed.
1017
+ - `#I363018` - An issue with event template content is empty after performing CRUD action with resource has been fixed.
1018
+
1019
+ ## 19.4.47 (2022-01-25)
1020
+
1021
+ ### Schedule
1022
+
1023
+ #### Bug Fixes
1024
+
1025
+ - `#I361305` - A performance issue while loading more events in the Timeline views has been fixed.
1026
+ - `#I361135` - An issue with improper argument data received in the `eventRendered` event in each view has been fixed.
1027
+ - `#I363266` - An issue with the more popup window has truncated at bottom of the schedule in month view has been fixed.
1028
+
1029
+ ## 19.4.43 (2022-01-18)
1030
+
1031
+ ### Schedule
1032
+
1033
+ #### Bug Fixes
1034
+
1035
+ - `#F171650` - An issue with localized text is not applied for the week numbers tooltip in year view has been fixed.
1036
+
1037
+ ## 19.4.42 (2022-01-11)
1038
+
1039
+ ### Schedule
1040
+
1041
+ #### Bug Fixes
1042
+
1043
+ - `#I360126` - Timeline views appointment misalignment issue while work cells width reduced has been fixed.
1044
+
1045
+ ## 19.4.41 (2022-01-04)
1046
+
1047
+ ### Schedule
1048
+
1049
+ #### Bug Fixes
1050
+
1051
+ - `#I357890` - An issue with work cells misalignment in the timeline month view has been fixed.
1052
+ - `#FB31401` - An issue with today button navigating issue only in the `MonthAgenda` view issue has been fixed.
1053
+ - `#FB30967` - An issue while drag and drop an event with `eventDragArea` has been fixed.
1054
+
1055
+ ## 19.4.40 (2021-12-28)
1056
+
1057
+ ### Schedule
1058
+
1059
+ #### Bug Fixes
1060
+
1061
+ - `#I353817` - An issue with all-day region scrolling issue only in the Mac device has been fixed.
1062
+
1063
+ ## 19.4.38 (2021-12-17)
1064
+
1065
+ ### Schedule
1066
+
1067
+ #### New Features
1068
+
1069
+ - `#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.
1070
+ - `#FB9963`, `#I331086` - Provided an option to customize the header names when the Scheduler is exported to Excel.
1071
+ - `#I276542`, `#F169844` - Provided support to set the minimum event duration for appointments to make the event subject easier to read.
1072
+ - `#I335888`, `#F167194`, `#F167235`, `#F169012`, `#F169593`, `#F169647` - Provides accessibility support for timeline year views to select multiple cells for actions.
1073
+
1074
+ #### Bug Fixes
1075
+
1076
+ - `#I357194` - An issue while slower the performance of the schedule, while drag and drop the event with `eventTemplate` has been fixed.
1077
+
1078
+ ## 19.3.55 (2021-11-23)
1079
+
1080
+ ### Schedule
1081
+
1082
+ #### Bug Fixes
1083
+
1084
+ - `#I347217` - An issue while using `getRecurrenceDates` method in the weekly rule option has been fixed.
1085
+
1086
+ ## 19.3.53 (2021-11-12)
1087
+
1088
+ ### Schedule
1089
+
1090
+ #### New Features
1091
+
1092
+ - `#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.
1093
+ - `#I339786` - Provided localization support for timezone collections which are displayed in the editor window.
1094
+
1095
+ ## 19.3.48 (2021-11-02)
1096
+
1097
+ ### Schedule
1098
+
1099
+ #### Bug Fixes
1100
+
1101
+ - `#F158202` - The `getCurrentViewEvents` method not returns current view events in Agenda view has been fixed.
1102
+ - `#I343356` - An issue while using two dynamic validation error message for the scheduler field has been fixed.
1103
+ - `#I345316` - An issue while saving an event dynamically using `saveEvent` method only with `timezone` property for the scheduler has been fixed.
1104
+ - `#F169453` - An issue with the horizontal scroll position in the timeline month, while dragging or resizing an event has been fixed.
1105
+ - `#I342117` - An issue with virtual scrolling down not happening issue in Agenda view mobile mode has been fixed.
1106
+
1107
+ ## 19.3.46 (2021-10-19)
1108
+
1109
+ ### Schedule
1110
+
1111
+ #### Bug Fixes
1112
+
1113
+ - `#I344571` - An alignment issue between the resource cells and work cells in timeline year has been fixed.
1114
+ - `#FB29199` - Dragging an event from one month to another throws an exception in month view has been fixed.
1115
+ - `#I344682` - An issue with virtual up-scrolling while enabling the `rowAutoHeight` property has been fixed.
1116
+
1117
+ ## 19.3.44 (2021-10-05)
1118
+
1119
+ ### Schedule
1120
+
1121
+ #### Bug Fixes
1122
+
1123
+ - `#FB29036` - An issue with the `renderCell` event arguments as `resourceGroupCells` has been fixed in the timeline year view with resources.
1124
+ - `#I339839` - An issue with the scheduler resize action is not working properly in timeline month has been fixed.
1125
+ - `#F168909` - The scheduler agenda view throws script error on multilevel resources grouping has been fixed.
1126
+
1127
+ ## 19.3.43 (2021-09-30)
1128
+
1129
+ ### Schedule
1130
+
1131
+ #### New Features
1132
+
1133
+ - `#I316891`, `#I328879`, `#I331265`, `#I335777`, `#I339302`, `#F165491` - Provided support to sort appointments by priority instead of time.
1134
+ - `#I242605`, `#F160122`, `#F165334` - Provided public method for Scheduler to refresh the Scheduler layout without re-render.
1135
+ - `#I314842`, `#I320731` - Provided public method for Scheduler to refresh the given templates.
1136
+ - `#FB24252` - Provided template support for header indent cells.
1137
+
1138
+ #### Bug Fixes
1139
+
1140
+ - `#I333664` - An issue with the dragging between two Schedulers has been fixed.
1141
+ - `#I340348` - An issue with opening the editor window in RTL mode has been fixed.
1142
+ - `#I342117` - An issue with today button navigation in Agenda view and scrolling down not happening issue has been fixed.
1143
+ - `#F168358` - An issue with the "delete icon is not disabled in mobile mode" has been fixed.
1144
+ - `#I340332` - An issue with the events rendering performance in vertical views has been fixed.
1145
+ - `#I342489` - An issue with identify the clicked button on `popupClose` event has been fixed by providing `event` option on `PopupCloseEventArgs`.
1146
+
1147
+ ## 19.2.59 (2021-08-31)
1148
+
1149
+ ### Schedule
1150
+
1151
+ #### New Features
1152
+
1153
+ - `#I242605`, `#F160122`, `#F165334` - Provided public method for Scheduler to refresh the Scheduler layout without re-render.
1154
+ - `#I314842`, `#I320731` - Provided public method for Scheduler to refresh the given templates.
1155
+
1156
+ #### Bug Fixes
1157
+
1158
+ - `#I339839` - An issue with the scheduler resize action is not working properly in timeline views has been fixed.
1159
+ - `#I338473` - An issue with the scheduler `showWeekend` property set to false appointments missing has been fixed.
1160
+ - `#I340348` - An issue with opening the editor window in RTL mode has been fixed.
1161
+ - `#I342117` - An issue with today button navigation in Agenda view has been fixed.
1162
+ - `#I340332` - An issue with the scheduler performance in Vertical views has been fixed.
1163
+
1164
+ ## 19.2.56 (2021-08-17)
1165
+
1166
+ ### Schedule
1167
+
1168
+ #### Bug Fixes
1169
+
1170
+ - `#I334925` - An issue with the longer appointments in timeline year view UI has been resolved.
1171
+
1172
+ ## 19.2.55 (2021-08-11)
1173
+
1174
+ ### Schedule
1175
+
1176
+ #### Bug Fixes
1177
+
1178
+ - `#I337733` - An issue with the scheduler events overlapping when start and end times were the same has been resolved.
1179
+
1180
+ ## 19.2.51 (2021-08-03)
1181
+
1182
+ ### Schedule
1183
+
1184
+ #### Bug Fixes
1185
+
1186
+ - `#F167351` - An issue with the scheduler quick popup closes when using multi-select in the popup content has been fixed.
1187
+
1188
+ ## 19.2.49 (2021-07-27)
1189
+
1190
+ ### Schedule
1191
+
1192
+ #### Bug Fixes
1193
+
1194
+ - `#I331086` - An issue with the drag and drop the spanned events in vertical views has been fixed.
1195
+ - `#I336108` - An issue with the scheduler import of recurring events has been fixed.
1196
+
1197
+ ## 19.2.47 (2021-07-13)
1198
+
1199
+ ### Schedule
1200
+
1201
+ #### Bug Fixes
1202
+
1203
+ - `#I333860, #I333664` - An issue with the external drag between two scheduler has been fixed.
1204
+ - `#F166305` - An issue with dynamically changed `minDate` and `maxDate` property in react scheduler has been fixed.
1205
+ - `#F166752` - An issue with drag and drop doesn't work when enabled the desktop mode in mobile devices has been fixed.
1206
+ - `#I331086` - An issue with the drag and drop the spanned events in vertical views has been fixed.
1207
+
1208
+ ## 19.2.46 (2021-07-06)
1209
+
1210
+ ### Schedule
1211
+
1212
+ #### Bug Fixes
1213
+
1214
+ - `#I332366` - An issue with the toolbar popup is not open properly when multiple schedules are rendered on a single page has been fixed.
1215
+
1216
+ ## 19.2.44 (2021-06-30)
1217
+
1218
+ ### Schedule
1219
+
1220
+ #### New Features
1221
+
1222
+ - Provided option to set the custom months count in year views.
1223
+
1224
+ #### Bug Fixes
1225
+
1226
+ - `#FB25227` - An issue with the scheduler resize action is not working in timeline views has been fixed.
1227
+ - `#I331501` - An issue with the scheduler height is not responsive related to the parent container has been fixed.
1228
+
1229
+ ## 19.1.69 (2021-06-15)
1230
+
1231
+ ### Schedule
1232
+
1233
+ #### Bug Fixes
1234
+
1235
+ - `#I331194` - An issue with localization for form-validator is not working has been fixed.
1236
+ - `#I331513` - An issue with add icon shows on mobile when disabled the `allowAdding` property has been fixed.
1237
+
1238
+ ## 19.1.67 (2021-06-08)
1239
+
1240
+ ### Schedule
1241
+
1242
+ #### Bug Fixes
1243
+
1244
+ - `#I327333` - An issue with the scheduler current time indicator position not maintained has been fixed.
1245
+ - `#I329599` - An issue with the scheduler `eventRendered` event in agenda view has been fixed.
1246
+ - `#F165707` - An issue with the external drag between two scheduler has been fixed.
1247
+ - `#I330676` - An issue with the scheduler more popup is not updated when deleting the event in year view has been fixed.
1248
+ - `#I330946` - An issue with the scheduler keyboard interaction when the `readonly` property is enabled has been fixed.
1249
+
1250
+ ## 19.1.66 (2021-06-01)
1251
+
1252
+ ### Schedule
1253
+
1254
+ #### Bug Fixes
1255
+
1256
+ - `#F165550` - An issue with script error throws while dragging the scheduler events in IE11 has been fixed.
1257
+
1258
+ ## 19.1.65 (2021-05-25)
1259
+
1260
+ ### Schedule
1261
+
1262
+ #### New Features
1263
+
1264
+ - Provided public method to select the resources programmatically based on group index in mobile mode.
1265
+
1266
+ #### Bug Fixes
1267
+
1268
+ - `#I317799` - An issue with memory leak while performing navigation action has been fixed.
1269
+ - `#F165261` - An issue with scheduler dates are not translated based on locale has been fixed.
1270
+ - `#FB25480` - An issue with the scheduler mobile mode when the `readonly` property is enabled has been fixed.
1271
+
1272
+ - `#I317799` - An issue with memory leak while performing navigation action has been fixed.
1273
+
1274
+ ## 19.1.63 (2021-05-13)
1275
+
1276
+ ### Schedule
1277
+
1278
+ #### New Features
1279
+
1280
+ - Provided scrolling support for all day row when loading huge events.
1281
+ - Provided the print option support to print the schedule in a customized way.
1282
+ - Provided option to set the different first month in year view.
1283
+ - Provided template support for date header in year views.
1284
+
1285
+ #### Bug Fixes
1286
+
1287
+ - `#I325602`: An issue with resizing the appointment to last cell is not working has been fixed.
1288
+ - `#I315877` - An issue with the scheduler fast dragging in timeline views has been resolved.
1289
+
1290
+ ## 19.1.59 (2021-05-04)
1291
+
1292
+ ### Schedule
1293
+
1294
+ #### Bug Fixes
1295
+
1296
+ - `#FB23548` - An issue with Keyboard Interaction with Virtual Scrolling has been fixed.
1297
+ - `#I323778` - An issue with Scheduler Accessibility has been fixed.
1298
+
1299
+ ## 19.1.58 (2021-04-27)
1300
+
1301
+ ### Schedule
1302
+
1303
+ #### Bug Fixes
1304
+
1305
+ - `#I324040` - An issue with the scheduler multiple appointment selection in IOS device has been resolved.
1306
+ - `#I324529, #I323448` - An issue with deleting the entire recurrence events with resources has been resolved.
1307
+ - `#FB23906, #FB23902` - An issue with "Scheduler causing focus loss for text inputs in Android device" has been fixed.
1308
+ - `#FB23931` - An issue with "Scheduler stealing focus on window resize" has been fixed.
1309
+ - `#I313715` - An issue with script error throws while resizing the scheduler events has been fixed.
1310
+ - `#FB24226` - An issue with the scheduler alert message when drag the event in series has been fixed.
1311
+
1312
+ ## 19.1.57 (2021-04-20)
1313
+
1314
+ ### Schedule
1315
+
1316
+ #### Bug Fixes
1317
+
1318
+ - `#I312919` - An issue with the scheduler performance with resources has been resolved.
1319
+
1320
+ ## 19.1.56 (2021-04-13)
1321
+
1322
+ ### Schedule
1323
+
1324
+ #### Bug Fixes
1325
+
1326
+ - `#FB23907` - An issue with the "Scheduler throws the console errors in Android device" has been fixed.
1327
+ - `#F161048` - An issue with Scheduler quick popup rendered twice when the `quickInfoOnSelectionEnd` property is enabled has been fixed.
1328
+ - `#I320954` - An issue with the scheduler rendered twice with a different timezone has been fixed.
1329
+ - `#I319812` - An issue with the appointment is not created properly in Timeline Year view has been fixed.
1330
+ - `#I320915` - An issue with Scheduler events height is not rendered properly in the DST timezone has been fixed.
1331
+ - `#FB23548` - An issue with Keyboard Interaction with Virtual Scrolling has been fixed.
1332
+ - `F159057` - An issue with the appointment was not shown correctly in the UI in `TimelineMonth` view has been fixed.
1333
+
1334
+ ## 19.1.55 (2021-04-06)
1335
+
1336
+ ### Schedule
1337
+
1338
+ #### Bug Fixes
1339
+
1340
+ - `#F17228` - An issue with scheduler input field focus not working in iPad device with external keyboard has been fixed.
1341
+ - `#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.
1342
+ - `#I321711` - Duplicate events rendered in year view of schedule issue has been fixed.
1343
+ - `#I320945` - An issue with scheduler multiple cell selection by holding shift and mouse click throws script error has been fixed.
1344
+
1345
+ ## 19.1.54 (2021-03-30)
1346
+
1347
+ ### Schedule
1348
+
1349
+ #### New Features
1350
+
1351
+ - **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.
1352
+ - **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.
1353
+
1354
+ ### Recurrence Editor
1355
+
1356
+ #### Breaking Changes
1357
+
1358
+ - The following properties type was changed.
1359
+
1360
+ | Property | Previous Type | Current Type |
1361
+ |----------|---------------|--------------------------------|
1362
+ | `selectedType` | `anonymous` | `int` |
1363
+ | value | `anonymous` | `string` |
1364
+
1365
+ ## 18.4.49 (2021-03-23)
1366
+
1367
+ ### Schedule
1368
+
1369
+ #### Bug Fixes
1370
+
1371
+ - `#F22773` - An issue with editor freezes when saving a task to repeat yearly on the last day of a month has been fixed.
1372
+ - `#F163215` - An issue with one day block event renders for two days has been fixed.
1373
+ - `#I316945` - An issue with recurrence events are not deleted properly in overview sample has been fixed.
1374
+ - `#I317560` - An issue with Schedule events getting overlapped issue has been fixed.
1375
+ - `#I313557` - An issue with scheduler resource header when enabled `rowAutoHeight` and `height` properties has been fixed.
1376
+ - `#317799` - An issue with memory leak in Scheduler has been fixed.
1377
+ - `#313715,320461` - An issue with script error throws while fast dragging of scheduler events has been fixed.
1378
+
1379
+ ## 18.4.48 (2021-03-16)
1380
+
1381
+ ### Schedule
1382
+
1383
+ #### Bug Fixes
1384
+
1385
+ - `#I313966` - An issue with scheduler toolbar popup items are hidden in iPhone has been fixed.
1386
+ - `#I313459` - An issue with scheduler content width is not properly adjusted while loading large number of resources in IOS device has been fixed.
1387
+ - `#I315617` - An issue with scheduler `refreshDataManager` method invokes before active view has been fixed.
1388
+
1389
+ ## 18.4.47 (2021-03-09)
1390
+
1391
+ ### Schedule
1392
+
1393
+ #### Bug Fixes
1394
+
1395
+ - `#I303694` - An issue with scheduler toolbar items are not rendered as mobile view in iPad has been fixed.
1396
+
1397
+ ## 18.4.46 (2021-03-02)
1398
+
1399
+ ### Schedule
1400
+
1401
+ #### Bug Fixes
1402
+
1403
+ - `#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.
1404
+ - `#I292642` - An issue with today date is not selected properly in header calendar with different timezone has been fixed.
1405
+ - `#I315273` - An issue with clone element position place is mismatched while perform resize action with different resize interval has been fixed.
1406
+ - `#I316544` - An issue with locale word are not displayed in all day row expand and collapse section has been fixed.
1407
+ - `#I315617, #I315568` - An issue with script error throws while refresh the scheduler before loads the active view has been fixed.
1408
+ - `#I315462` - An issue with appointments are not rendered when removing the resource dynamically has been fixed.
1409
+ - `#F162676` - An issue with resource and content area gets misaligned when `rowAutoHeight` is enabled in virtual scrolling has been fixed.
1410
+
1411
+ ## 18.4.44 (2021-02-23)
1412
+
1413
+ ### Schedule
1414
+
1415
+ #### Bug Fixes
1416
+
1417
+ - `#I314589` - An issue with week number not shown properly in timeline views has been fixed.
1418
+
1419
+ ## 18.4.42 (2021-02-09)
1420
+
1421
+ ### Schedule
1422
+
1423
+ #### Bug Fixes
1424
+
1425
+ - `#I312058` - An issue with Appointments not rendered in vertical timeline year view issue has been fixed.
1426
+ - `#I310882` - An issue with daily recurring event not able to create for 24 hours has been fixed.
1427
+
1428
+ ## 18.4.41 (2021-02-02)
1429
+
1430
+ ### Schedule
1431
+
1432
+ #### New Features
1433
+
1434
+ - `#304701`, `#305038` - Provided the persistence support for scroll bar position.
1435
+
1436
+ #### Bug Fixes
1437
+
1438
+ - `#I309044` - An issue with year view months rendered incorrectly issue has been fixed.
1439
+ - `#I312201` - An issue with Scheduler throws script error from Current time indicator has been fixed.
1440
+
1441
+ ## 18.4.35 (2021-01-19)
1442
+
1443
+ ### Schedule
1444
+
1445
+ #### Bug Fixes
1446
+
1447
+ - `#I306474` - An issue when `rowAutoHeight` is enabled the events are overlapping to each other in month view issue has been fixed.
1448
+ - `#I309996` - An issue with `resouceHeaderTemplate` is not rendering, while navigating the date via swipe actions has been fixed.
1449
+ - `F161271` - An issue with script errors throws when editing the block appointments manually using open editor has been fixed.
1450
+ - `#I292642` - An issue when timezone is set the calendar today date is not updated properly issue has been fixed.
1451
+
1452
+ ## 18.4.34 (2021-01-12)
1453
+
1454
+ ### Schedule
1455
+
1456
+ #### Bug Fixes
1457
+
1458
+ - `I309759, I309773` - An issue with the `getCurrentViewDates` returned incorrect dates in Agenda view has been fixed.
1459
+
1460
+ ## 18.4.33 (2021-01-05)
1461
+
1462
+ ### Schedule
1463
+
1464
+ #### New Features
1465
+
1466
+ - `#I305332, #I309559` - Provided different options to set the week numbers like Microsoft Outlook Calendar.
1467
+
1468
+ #### Bug Fixes
1469
+
1470
+ - `#I307462` - An issue when editing date time and End as until the last event not rendered has been fixed.
1471
+ - `#F159141` - An issue when enable persistence is true selected resource not rendered issue has been fixed.
1472
+ - `#I304107` - An issue when request to return current view or view model issue has been resolved.
1473
+ - `#I306554, #I307686` - An issue when rendering the appointments in timeline year view has been fixed.
1474
+ - `#F20602` - An issue with the position of the more event popup window is calculating wrongly when we setting the timescale interval has been fixed.
1475
+ - An issue with appointments overlapping in year view has been fixed.
1476
+ - `#I306366` - An issue with resource text is not visible in mobile mode issue has been fixed.
1477
+
1478
+ ## 18.4.32 (2020-12-29)
1479
+
1480
+ ### Schedule
1481
+
1482
+ #### New Features
1483
+
1484
+ - Provided public methods for the Scheduler to get and set the resource collections.
1485
+
1486
+ ## 18.4.31 (2020-12-22)
1487
+
1488
+ ### Schedule
1489
+
1490
+ #### Bug Fixes
1491
+
1492
+ - `#301175` - An issue with the appointment top value in timeline views for the appointment rendered in the last resource has been fixed.
1493
+
1494
+ ## 18.4.30 (2020-12-17)
1495
+
1496
+ ### Schedule
1497
+
1498
+ #### New Features
1499
+
1500
+ - Provided the event Drag and Drop and Resize support for Timeline Year view.
1501
+
1502
+ #### Bug Fixes
1503
+
1504
+ - `#159985` - An issue with `scrollToResource` public method not working properly has been fixed.
1505
+ - `#159896`- An issue with the appointments are misaligned when `rowAutoHeight` is true has been fixed.
1506
+ - `#18946` - An issue with displaying date twice for DST time-zones when switching between summer and winter time, has been fixed.
1507
+ - `#300527` - An issue with loose shadow event once new week opens issue has been fixed.
1508
+ - `#292074` - An issue with Schedule event dragging is not working fine when set up the `eventDragArea` property has been fixed.
1509
+ - `#303564` - An issue with Editor window throws script error has been fixed.
1510
+ - `#304988` - An issue with Scheduler throws script error when navigate form the scheduler to other component has been fixed.
1511
+
1512
+ ## 18.3.53 (2020-12-08)
1513
+
1514
+ ### Schedule
1515
+
1516
+ #### Bug Fixes
1517
+
1518
+ - `#286035` - An issue with theme mapping has been fixed.
1519
+ - `#299009, #305259` - An issue with the `resourceHeaderTemplate` shows empty content when changing the properties of schedule if tooltip enabled has been fixed.
1520
+ - `#159749` - An issue with Scheduler is not refreshed properly while navigating has been fixed.
1521
+ - `#305387` - An issue with events not displayed on proper time has been fixed.
1522
+ - `#301811` - An issue with render RTE component as a additional field in the editor template has been fixed.
1523
+
1524
+ ## 18.3.51 (2020-11-24)
1525
+
1526
+ ### Schedule
1527
+
1528
+ #### Bug Fixes
1529
+
1530
+ - `#292642` - An issue with the event rendering with `StartTimezone` and `EndTimezone` fields at the time of initial loading alone has been fixed.
1531
+ - `#292642` - An issue with date navigation from calendar with different timezone has been fixed.
1532
+ - `#F16947` - An issue with events on same day and time overlap in readable way has been fixed.
1533
+ - `#F159110` - An issues with Scheduler timeline year view has been fixed.
1534
+ - `#F159666` - An issue with wrong element in `renderCell` event has been fixed.
1535
+ - `#F159432` - An issue with customizing the dragging interval time of the events has been fixed.
1536
+ - `#301811` - An issue with render RTE component as a additional field in the editor template has been fixed.
1537
+
1538
+ ## 18.3.50 (2020-11-17)
1539
+
1540
+ ### Schedule
1541
+
1542
+ #### Bug Fixes
1543
+
1544
+ - `#299272` - An issue with the all day spanned events are not properly rendered in the timeline year view has been fixed.
1545
+ - `#299896` - An issue with events get overlapped, when we render the two events at the same time has been fixed.
1546
+ - `#299009` - An issue with `resourceHeaderTemplate` when enable the schedule tooltip has been fixed.
1547
+
1548
+ ## 18.3.48 (2020-11-11)
1549
+
1550
+ ### Schedule
1551
+
1552
+ #### Bug Fixes
1553
+
1554
+ - `#299517` - An issue with the `displayName` property not working in the Agenda view and the `MonthAgenda` view has been fixed.
1555
+
1556
+ ## 18.3.44 (2020-10-27)
1557
+
1558
+ ### Schedule
1559
+
1560
+ #### Bug Fixes
1561
+
1562
+ - `#F158249` - Now `scrollTo()` support has been added in timeline year view.
1563
+ - `#292093` - An issue with setting the resize interval for event in `resizeStart` not resizing the event to its minimum interval value has been fixed.
1564
+ - `#299079` - An issue with Custom editor window throws script error has been fixed.
1565
+
1566
+ - `#286199` - An issue with when destroying the child component used in the editor template the child component is destroyed multiple time has been fixed.
1567
+
1568
+ ## 18.3.42 (2020-10-20)
1569
+
1570
+ ### Schedule
1571
+
1572
+ #### Bug Fixes
1573
+
1574
+ - `#293358` - An issue with the Scheduler events are not rendered in month view and the same events rendered in other views has been fixed.
1575
+ - `#286376` - An issue with refreshing the layout when setting `dataSource` dynamically using `setmodel` in Year view has been fixed.
1576
+ - `#286376` - An issue with view navigation when setting `dataSource` dynamically using `setmodel` in year view has been fixed.
1577
+ - `#294568` - An issue with all day spanned event is not rendered properly in the `TimelineYear` view has been fixed.
1578
+ - `#296098` - An issue with event click action on less duration events not deselecting the previously selected event has been fixed.
1579
+ - `#286199` - An issue with when destroying the child component used in the editor template the child component is destroyed multiple time has been fixed.
1580
+ - `#297720` - An issue with creating an event for the resource parent work cells using `addEvent` method has been fixed.
1581
+
1582
+ ## 18.3.40 (2020-10-13)
1583
+
1584
+ ### Schedule
1585
+
1586
+ #### Bug Fixes
1587
+
1588
+ - `#290061` - An issue with the drop action not working properly in the first row of the Scheduler has been fixed.
1589
+ - `#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.
1590
+ - `#285797` - An issue with dragging an appointment beyond the schedule end time causes appointment to jump has been fixed.
1591
+ - `#290061` - An issue with the drop action not working properly in the first row of the Scheduler has been fixed.
1592
+ - `#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.
1593
+ - `#292609` - An issue with dynamically changed `minDate` and `maxDate` property are not applying to editor start and end date pickers has been fixed.
1594
+ - `#296040` - An issue with event template is not applied in react scheduler has been fixed.
1595
+
1596
+ ## 18.3.35 (2020-10-01)
1597
+
1598
+ ### Schedule
1599
+
1600
+ #### Bug Fixes
1601
+
1602
+ - `#292642` - An issue with date navigation from calendar today button with different timezone has been fixed.
1603
+ - `#292609` - An issue with applying `minDate` and `maxDate` when until date of recurrence editor is configured has been fixed.
1604
+ - `#157158` - An issue with events not displaying when set `minDate` and `maxDate` as string type has been fixed.
1605
+ - `#292093` - An issue with events that are not properly rendered when the drag target moves outside the work cell has been fixed.
1606
+ - `#157442` - An issue with improper alignment of header cells while remove resource dynamically has been fixed.
1607
+ - `#287725` - An issue with clone element height is not calculated properly when disable the timescale in week view has been fixed.
1608
+ - `#292250` - An issue with timeline views resource tree tab accessibility navigation has been fixed.
1609
+
1610
+ ## 18.2.59 (2020-09-21)
1611
+
1612
+ ### Schedule
1613
+
1614
+ #### Bug Fixes
1615
+
1616
+ - `#292250` - An issue with accessibility related navigations from one resource to another resource events issue has been fixed.
1617
+
1618
+ ## 18.2.57 (2020-09-08)
1619
+
1620
+ ### Schedule
1621
+
1622
+ #### Bug Fixes
1623
+
1624
+ - `#156859` - An issue with the resource name is displayed wrongly in quick popup has been fixed.
1625
+ - `#157022` - An issue with character encoding in german umlaut culture while import iCalendar has been fixed.
1626
+ - `#289020` - An issue with script error throws while creating new events in the iPhone has been fixed.
1627
+
1628
+ ## 18.2.55 (2020-08-25)
1629
+
1630
+ ### Schedule
1631
+
1632
+ #### Bug Fixes
1633
+
1634
+ - `#286271` - An issue with the block events are not rendered When we changing the scheduler `timezone` dynamically has been fixed.
1635
+ - `#154907, #154998` - An issue with `Agenda` view while `allowVirtualscrolling` and `hideEmptyAgendaDays` set to be true has been fixed.
1636
+ - `#289191` - An issue with agenda view freezes when we render a spanned event with a millisecond end time value is fixed.
1637
+ - `#156849` - An issue with Scheduler throws script error when perform event drag action above the cells with `cellTemplate` has been fixed.
1638
+ - `#286376` - An issue with horizontal year view events has been fixed.
1639
+
1640
+ ## 18.2.54 (2020-08-18)
1641
+
1642
+ ### Schedule
1643
+
1644
+ #### Bug Fixes
1645
+
1646
+ - `#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.
1647
+ - `#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.
1648
+ - `#287725` - An issue with drag and drop doesn't work properly when we disable `timeScale` property has been fixed.
1649
+
1650
+ ## 18.2.47 (2020-07-28)
1651
+
1652
+ ### Schedule
1653
+
1654
+ #### Bug Fixes
1655
+
1656
+ - `#282556` - An issue with resizing the events has been fixed.
1657
+ - `#284373` - An issue with adding multiple CSS classes to `cssClass` property has been fixed.
1658
+
1659
+ ## 18.2.46 (2020-07-21)
1660
+
1661
+ ### Schedule
1662
+
1663
+ #### Bug Fixes
1664
+
1665
+ - `#154622` - An issue with date format is not showing correctly in Mac browsers has been fixed.
1666
+ - `#283631` - An issue with resizing not working properly with Timeline views when the resize interval is 5 has been fixed.
1667
+ - `#284869` - An issue with events are disappeared after resizing the browser window has been fixed.
1668
+ - `#280860` - An issue with the clone element while drag and drop on first resource has been fixed.
1669
+ - `#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.
1670
+ - `#281573` - An issue with events not rendered in the `WorkWeek` view when applied `firstDayofweek` property has been fixed.
1671
+ - `#283295` - An issue with script error thrown while clicking on the cell in multi level resource grouping scheduler has been fixed.
1672
+ - `#282818` - An issue with the single resource can perform in multiple group with same resource id has been fixed.
1673
+
1674
+ ## 18.2.44 (2020-07-07)
1675
+
1676
+ ### Schedule
1677
+
1678
+ #### New Features
1679
+
1680
+ - **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.
1681
+ - **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.
1682
+ - **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.
1683
+
1684
+ #### Bug Fixes
1685
+
1686
+ - `#280595` - An issue with event subject default field mapping is not consider in UI has been fixed.
1687
+
1688
+ ## 18.1.56 (2020-06-09)
1689
+
1690
+ ### Schedule
1691
+
1692
+ #### Bug Fixes
1693
+
1694
+ - `#278019` - An issue with drag and drop of vertical view events doesn't work properly when we disable `timeScale` property has been fixed.
1695
+
1696
+ ## 18.1.55 (2020-06-02)
1697
+
1698
+ ### Schedule
1699
+
1700
+ #### Bug Fixes
1701
+
1702
+ - `#271944` - An issue with header calendar doesn't close when using two scheduler in same document has been fixed.
1703
+ - `#154305, #153364` - An issue with keypad closes instantly when opening the editor window on Android devices has been resolved.
1704
+
1705
+ ## 18.1.54 (2020-05-26)
1706
+
1707
+ ### Schedule
1708
+
1709
+ #### Bug Fixes
1710
+
1711
+ - `#151241` - An issue with `popupOpenEventArgs` API documentation has missing possible type value has been fixed.
1712
+
1713
+ ## 18.1.52 (2020-05-13)
1714
+
1715
+ ### Schedule
1716
+
1717
+ #### New Features
1718
+
1719
+ - Now resource grouping support has been added in timeline year view.
1720
+
1721
+ #### Bug Fixes
1722
+
1723
+ - `#272563` - An issue with drag and drop of all day events doesn't work properly when we disable `timeScale` property has been fixed.
1724
+ - `#271586` - An issue with event is not created in Sunday and Saturday of the `WorkWeek` view has been fixed.
1725
+ - `#153364` - An issue with appointment alignment while rotation has been fixed.
1726
+ - `#273474` - An issue with `editFollowingEvent` has been fixed.
1727
+
1728
+ ## 18.1.48 (2020-05-05)
1729
+
1730
+ ### Schedule
1731
+
1732
+ #### Bug Fixes
1733
+
1734
+ - `#F11316` - An issue with `ToolbarActionArgs` is deprecated but without it, Print Exporting won't work has been fixed.
1735
+ - `#273612` - An issue with blocked events in mobile mode has been fixed.
1736
+
1737
+ ## 18.1.46 (2020-04-28)
1738
+
1739
+ ### Schedule
1740
+
1741
+ #### Bug Fixes
1742
+
1743
+ - `#F11648` - An issue with previous value maintaining in select event has been fixed.
1744
+ - `#F12531` - An issue with `allowMultiRowSelection` is not working properly in timeline views has been fixed.
1745
+ - `#268604` - An issue with improper time slots rendering when daylight saving time occurring date has been fixed.
1746
+ - `#271829` - An issue with selected class is not applied properly in `MonthAgenda` view has been fixed.
1747
+ - `#273646` - An issue with `aria-readonly` attribute has been fixed.
1748
+ - `#266725` - An issue with `scrollToResource` method when we enabled the `virtualScrolling` property has been fixed.
1749
+ - `#271264` - An issue with `scrollToResource` method when we enabled the `rowAutoHeight` property has been fixed.
1750
+
1751
+ ## 18.1.45 (2020-04-21)
1752
+
1753
+ ### Schedule
1754
+
1755
+ #### Bug Fixes
1756
+
1757
+ - `#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.
1758
+ - `#F152942` - An issue with `getGroupIndexFromEvent` is not returning the correct result once the resource has enabled the `allowMultiple` property has been fixed.
1759
+
1760
+ ## 18.1.44 (2020-04-14)
1761
+
1762
+ ### Schedule
1763
+
1764
+ #### Bug Fixes
1765
+
1766
+ - `#151925` - An issue with locale words are not translated properly has been fixed.
1767
+
1768
+ ## 18.1.43 (2020-04-07)
1769
+
1770
+ ### Schedule
1771
+
1772
+ #### Bug Fixes
1773
+
1774
+ - `#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.
1775
+
1776
+ ## 18.1.42 (2020-04-01)
1777
+
1778
+ ### Schedule
1779
+
1780
+ #### Bug Fixes
1781
+
1782
+ - `#269264` - An issue with last occurrence of the recurrence event is not rendered on month view has been fixed.
1783
+
1784
+ ## 18.1.36-beta (2020-03-19)
1785
+
1786
+ ### Schedule
1787
+
1788
+ #### Bug Fixes
1789
+
1790
+ - `#151738` - An issue with swipe action in mobile mode while applying `setWorkHours()` method has been fixed.
1791
+ - `#151972` - An issue with particular recurrence event while changing time zone as `Eastern time` has been fixed.
1792
+
1793
+ ## 17.4.55 (2020-03-10)
1794
+
1795
+ ### Schedule
1796
+
1797
+ #### Bug Fixes
1798
+
1799
+ - `#266530` - An issue with the property `editFollowingEvents` with count repeat type has been fixed.
1800
+ - `#266933` - An issue with the property `editFollowingEvents` does not work properly when block events presents has been fixed.
1801
+ - `#266725` - An issue with the method `scrollToResource()` which does not work properly when the virtual scroll property is enabled has been fixed.
1802
+ - `#151209` - An issue with swipe action in mobile mode when `minDate/maxDate` applied has been fixed.
1803
+ - `#263624` - An issue with the scheduler rendered with the block events shows the misplaced header cells on the Timeline month view has been fixed.
1804
+
1805
+ ## 17.4.51 (2020-02-25)
1806
+
1807
+ ### Schedule
1808
+
1809
+ #### Bug Fixes
1810
+
1811
+ - `#151346` - An issue with unexpected delete alert behaviour for longer duration events has been fixed.
1812
+ - `#151346` - An issue with multi select events of adaptive Scheduler mode has been fixed.
1813
+ - `#151209` - An issue with misplaced dragging events in different time intervals has been fixed.
1814
+ - `#149561` - An issue with scheduler throwing script error while dragging the event with the option `groupByDate` in day view has been fixed.
1815
+ - `#263624` - An issue with the scheduler rendered with the block events shows the misplaced header cells on the Timeline month view has been fixed.
1816
+ - `#151455` - An issue in long spanned events in year view has been fixed.
1817
+ - `#263715` - An issue with dragging not working properly when page scrolling is enabled has been fixed.
1818
+
1819
+ ## 17.4.50 (2020-02-18)
1820
+
1821
+ ### Schedule
1822
+
1823
+ #### Bug Fixes
1824
+
1825
+ - `#148560` - An issue with misplaced dragging events in different drag intervals has been fixed.
1826
+ - `#262962` - An issue with page becoming crash for invalid recurrence rule has been fixed.
1827
+ - `#151346` - An issue with incorrect aria-label for alert windows has been fixed.
1828
+
1829
+ ## 17.4.46 (2020-01-30)
1830
+
1831
+ ### Schedule
1832
+
1833
+ #### New Features
1834
+
1835
+ - Provided public method to scroll to the position of the any resources that available on the scheduler.
1836
+ - Provided public method to change the current view based on index.
1837
+ - Added option to render single event per cell using `enableMaxHeight` property.
1838
+
1839
+ #### Bug Fixes
1840
+
1841
+ - `#F145578` - An issue with `scrollTo()` method not working properly in Timeline Week View has been fixed.
1842
+
1843
+ ## 17.4.43 (2020-01-14)
1844
+
1845
+ ### Schedule
1846
+
1847
+ #### Bug Fixes
1848
+
1849
+ - `#149393` - An issue with event rendering in Timeline mode with `timescale` property has been fixed.
1850
+ - `#150335` - An issue with draggable clone element position on scroll has been fixed.
1851
+ - `#256071` - An issue with `datepicker popup` not closing properly has been fixed.
1852
+ - `#258565` - An issue with drag-and-drop flickering has been fixed.
1853
+
1854
+ ## 17.4.41 (2020-01-07)
1855
+
1856
+ ### Schedule
1857
+
1858
+ #### Bug Fixes
1859
+
1860
+ - `#150069` - An issue with recurrence count limitation has been fixed.
1861
+ - `#148560` - An issue with drag interval has been fixed.
1862
+ - `#258735` - An issue with event rendering in Timeline mode with `startHour` property has been fixed.
1863
+ - `#149868` - An issue with event resizing in Vertical mode with `startHour` property has been fixed.
1864
+ - `#257355` - An issue with displaying the clicked date's event details in Month Agenda view with read only mode has been fixed.
1865
+ - `#258455` - An issue with Accessibility has been fixed.
1866
+
1867
+ ## 17.4.39 (2019-12-17)
1868
+
1869
+ ### Schedule
1870
+
1871
+ #### Bug Fixes
1872
+
1873
+ - `#254033` - An issue with rendering Scheduler with empty resource collection has been fixed.
1874
+ - `#252616` - An issue with page becoming idle for invalid recurrence rule has been fixed.
1875
+ - `#149561` - An issue with drag and drop behaviour with resource date wise grouping option has been fixed.
1876
+ - `#255919` - An issue with current month not displaying in calendar after swiping in mobile mode has been fixed.
1877
+ - An issue with event position while zooming the page has been fixed.
1878
+ - An issue with displaying wrong week number for DST time-zones has been fixed.
1879
+
1880
+ ## 17.3.28 (2019-11-19)
1881
+
1882
+ ### Schedule
1883
+
1884
+ #### Bug Fixes
1885
+
1886
+ - `#148606, #148770, #253868, #253137 , #253534` - An issue with displaying wrong timeslot and time for DST time-zones has been fixed.
1887
+ - `#148560` - An issue with custom drag interval has been fixed.
1888
+
1889
+ ## 17.3.27 (2019-11-12)
1890
+
1891
+ ### Schedule
1892
+
1893
+ #### Bug Fixes
1894
+
1895
+ - `#253534` - An issue with displaying fractional value in Agenda view for DST time-zones has been fixed.
1896
+ - `#253652` - An issue with triggering the `popupClose` event on clicking outside the Scheduler has been fixed.
1897
+ - An issue with event height whose duration is less than 30 minutes has been fixed.
1898
+ - `#253519` - An issue with events overlapping whose start and end time are same has been fixed.
1899
+
1900
+ ## 17.3.19 (2019-10-22)
1901
+
1902
+ ### Schedule
1903
+
1904
+ #### Bug Fixes
1905
+
1906
+ - `#251995` - An issue with request type parameter of action complete event while performing CRUD actions has been fixed.
1907
+
1908
+ ## 17.3.17 (2019-10-15)
1909
+
1910
+ ### Schedule
1911
+
1912
+ #### Bug Fixes
1913
+
1914
+ - An issue with displaying week number with different `firstDayOfWeek` has been fixed.
1915
+ - `#244512` - An issue with recurrence option in editor template has been fixed.
1916
+ - `#148187` - An issue with default flag missing in variable `$schedule-tbar-border-hover-color` from `bootstrap4` theme has been fixed.
1917
+
1918
+ ## 17.3.16 (2019-10-09)
1919
+
1920
+ ### Schedule
1921
+
1922
+ #### Bug Fixes
1923
+
1924
+ - `#147850`, `#249678` - An issue with event click action is not working in the latest version of iOS has been fixed.
1925
+ - `#246126` - An issue with toolbar is not working properly in all overflow modes in Scheduler has been fixed.
1926
+ - An issue with recurrence date is not generated properly in month option has been fixed.
1927
+
1928
+ - `#246943` - An issue with editor window occurring script error in router mode has been fixed.
1929
+
1930
+ ## 17.3.14 (2019-10-03)
1931
+
1932
+ ### Schedule
1933
+
1934
+ #### Bug Fixes
1935
+
1936
+ - `#240169` - An issue with drag and drop the appointments which are taller than the Scheduler has been fixed.
1937
+ - `#249012` - An issue with editing the recurrence events in the block dates has been fixed.
1938
+ - `#246295` - An issue with `QuickInfo` window is not open on cell click action has been fixed.
1939
+ - `#245942`, `#241514` - An issue with scrolling is not working in properly in different mobile mode has been fixed.
1940
+ - `#246563` - An issue with event is not rendered properly in agenda view has been fixed.
1941
+ - `#244271` - An issue with editor window is not closed when edit the event has been fixed.
1942
+ - `#246788` - An issue with cell selection event does not provide the proper cell details has been fixed.
1943
+ - `#246565` - An issue with scroller position is not positioned at current date in timeline month view has been fixed.
1944
+
1945
+ ## 17.3.9-beta (2019-09-20)
1946
+
1947
+ ### Schedule
1948
+
1949
+ #### Bug Fixes
1950
+
1951
+ - `#147443` - An issue with editor window headers are misaligned in mobile mode has been fixed.
1952
+ - `#147383` - An issue with drag and drop action is not working properly when `enableCompactView` disabled in mobile mode has been fixed.
1953
+ - `#246161` - An issue with multiple cell selections are not maintained when mouse right button click action has been fixed.
1954
+ - `#245932` - An issue with `showWeekend` field showing week ends either it is set as false has been fixed.
1955
+
1956
+ ## 17.2.49 (2019-09-04)
1957
+
1958
+ ### Schedule
1959
+
1960
+ #### Bug Fixes
1961
+
1962
+ - `#244555` - An issue with recurrence editor change event is not populate the updated rule value has been fixed.
1963
+
1964
+ ## 17.2.47 (2019-08-27)
1965
+
1966
+ ### Schedule
1967
+
1968
+ #### Bug Fixes
1969
+
1970
+ - `#245942` - An issue with `quick popup` open on tab hold action in mobile mode has been fixed.
1971
+ - `#242531` - An issue with events not updated properly while changing Scheduler time zone dynamically has been fixed.
1972
+ - `#244512` - An issue with recurrence editor value not mapping in custom editor window has been fixed.
1973
+
1974
+ ## 17.2.41 (2019-08-14)
1975
+
1976
+ ### Schedule
1977
+
1978
+ #### Bug Fixes
1979
+
1980
+ - `#241514` - An issue with clone element not removing in DOM while invoke `refreshEvents` public method.
1981
+
1982
+ ## 17.2.40 (2019-08-06)
1983
+
1984
+ ### Schedule
1985
+
1986
+ #### Bug Fixes
1987
+
1988
+ - `#242906` - An issue with action begin event is not triggered in event add action within editor template has been fixed.
1989
+ - `#242299` - An issue with events misaligned in different browser zooming has been fixed.
1990
+ - `#243422` - An issue with recurrence validation is showing unwanted alert has been fixed.
1991
+ - `#240463` - An issue with end time value of editor window in month view has been fixed.
1992
+ - `#146092` - An issue with displaying week number with different `firstDayOfWeek` has been fixed.
1993
+
1994
+ ## 17.2.39 (2019-07-30)
1995
+
1996
+ ### Schedule
1997
+
1998
+ #### Bug Fixes
1999
+
2000
+ - `#242057` - An issue with applying different work hours for each individual resource when the `byDate` option is enabled within `group` property has been fixed.
2001
+ - `#240752` - An issue with recurrence option while using `editorTemplate` has been fixed.
2002
+ - `#242634` - An issue with calendar format in timeline month view has been fixed.
2003
+ - Getting wrong start and end time for the longer appointments in timeline views issue has been fixed.
2004
+ - An issue with recurring events while defining recurrence rule on it that includes both BYMONTH, BYMONTHDAY and BYDAY properties together has been fixed.
2005
+
2006
+ ## 17.2.35 (2019-07-17)
2007
+
2008
+ ### Schedule
2009
+
2010
+ #### Bug Fixes
2011
+
2012
+ - `#240271` - An issue with misalignment of +more indicator when the custom elements and appointments are rendered in same cell has been fixed.
2013
+
2014
+ ## 17.2.34 (2019-07-11)
2015
+
2016
+ ### Schedule
2017
+
2018
+ #### Bug Fixes
2019
+
2020
+ - Start and end time of events in month and timeline views now been correctly acquired in `eventRendered` event and event template.
2021
+ - `#240585` - Start time, end time and group index of clone element now been tracked in the events `drag` and `resizing`.
2022
+ - `#240271` - An issue with misalignment of +more indicator when the custom elements and appointments are rendered in same cell has been fixed.
2023
+
2024
+ ## 17.2.28-beta (2019-06-27)
2025
+
2026
+ ### Schedule
2027
+
2028
+ #### New Features
2029
+
2030
+ - Improved the drag and resize action for longer duration appointments.
2031
+ - Support to print the Scheduler layout.
2032
+ - Provided an option to edit the following recurrence events.
2033
+ - Provided time zone support to current time indicator.
2034
+ - Provided public method to reset/remove the highlighted work cells.
2035
+
2036
+ #### Bug Fixes
2037
+
2038
+ - Localization is not set properly to `datetimepicker` in editor window issue has been fixed.
2039
+ - `openEditor` method is not set the given start and end time in month view issue has been fixed.
2040
+ - `#145352` - An issue with displaying expand icon of parent resource which has no child has been fixed.
2041
+
2042
+ ## 17.1.51 (2019-06-11)
2043
+
2044
+ ### Schedule
2045
+
2046
+ #### Bug Fixes
2047
+
2048
+ - `#234343` - An issue with adding resources dynamically when it has empty collection in initially has been fixed.
2049
+ - `#235165` - An issue with `rowAutoHeight` property enabled the horizontal scroll wrongly in month view has been fixed.
2050
+
2051
+ ## 17.1.50 (2019-06-04)
2052
+
2053
+ ### Schedule
2054
+
2055
+ #### Bug Fixes
2056
+
2057
+ - `#234667` - An issue with Scheduler is not properly navigating to selected date in timeline views has been fixed.
2058
+ - `#234974` - An issue with Deleting ready only events is fixed.
2059
+ - `#143894` - An issue with selecting work cells for multiple rows is fixed.
2060
+ - `#234587` - An issue with rendering events with huge number of events in same times in week view is fixed.
2061
+
2062
+ - An issue with opening editor window multiple times, editor contents are rendered multiple times is fixed.
2063
+
2064
+ ## 17.1.48 (2019-05-21)
2065
+
2066
+ ### Schedule
2067
+
2068
+ #### Bug Fixes
2069
+
2070
+ - `#143979` - Events not rendered properly with `allowGroupEdit` when the resource id is two digit issue has been fixed.
2071
+ - `#234916` - Delete key not working properly in IE11 issue has been fixed.
2072
+
2073
+ ## 17.1.44 (2019-05-07)
2074
+
2075
+ ### Schedule
2076
+
2077
+ #### Bug Fixes
2078
+
2079
+ - `#233286` - An issue with event not rendered properly in start and end time date format as string in agenda view is fixed.
2080
+ - `#234231` - An issue with setting the different work hours in timeline week is fixed.
2081
+ - `#143531` - An issue with event not loaded properly in agenda virtual scrolling is fixed.
2082
+
2083
+ ## 17.1.43 (2019-04-30)
2084
+
2085
+ ### Schedule
2086
+
2087
+ #### Bug Fixes
2088
+
2089
+ - `#233410` - An issue with date is not retrieved in view navigation in timeline month view is fixed.
2090
+
2091
+ ## 17.1.42 (2019-04-23)
2092
+
2093
+ ### Schedule
2094
+
2095
+ #### Bug Fixes
2096
+
2097
+ - `#143894` - An issue with select event arguments element value returns wrongly has been fixed.
2098
+ - `#230544` - An issue with `editorTemplate` is not accessing the cell or event details has been fixed.
2099
+ - `#229980`, `#229989` - An issue with appointment position misplaced in timeline views has been fixed.
2100
+
2101
+ ## 17.1.41 (2019-04-16)
2102
+
2103
+ ### Schedule
2104
+
2105
+ #### Bug Fixes
2106
+
2107
+ - `#143412` - An issue with event editing using public `saveEvent` method and checking slot availability using `isSlotAvailable` method is fixed.
2108
+ - `#143720` - An issue with passing multiple resource for adding dynamically using `addResource` public method is fixed.
2109
+ - `#232246` - An issue with event resizing is not properly update when `startHour` and `endHour` using in timeline views is fixed.
2110
+ - `#231332` - An issue with block alert validation in recurrence event and data is not received in `popupOpen` event is fixed.
2111
+
2112
+ ## 17.1.38 (2019-03-29)
2113
+
2114
+ ### Schedule
2115
+
2116
+ #### Bug Fixes
2117
+
2118
+ - An issue while resizing all-day events in Scheduler, with disabled timescale mode is fixed.
2119
+ - An event to trigger on selection of multiple cells or events has been added.
2120
+
2121
+ ## 17.1.32-beta (2019-03-13)
2122
+
2123
+ ### Schedule
2124
+
2125
+ #### New Features
2126
+
2127
+ - Provided support to auto-adjust the height of work cells based on the number of appointments present in the same time ranges.
2128
+ - Support for exporting the Scheduler events to an Excel file format is provided.
2129
+ - 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.
2130
+
2131
+ ## 16.4.55 (2019-02-27)
2132
+
2133
+ ### Schedule
2134
+
2135
+ #### Bug Fixes
2136
+
2137
+ - An issue with unable to scroll down the browser scroller, when the Scheduler is loaded with Month Agenda as current view has been fixed.
2138
+
2139
+ ## 16.4.54 (2019-02-19)
2140
+
2141
+ ### Schedule
2142
+
2143
+ #### Bug Fixes
2144
+
2145
+ - An issue with events not displaying correctly based on Agenda view's current date range has been fixed.
2146
+ - An issue with recurring events while defining recurrence rule on it that includes both BYMONTH and BYDAY properties together has been fixed.
2147
+ - An issue with incorrect casing of `popupOpen` event's parameters that triggers on cell click action has been fixed.
2148
+ - An issue with 24 hours format not displaying in time cells of adaptive Scheduler mode has been fixed.
2149
+
2150
+ ## 16.4.53 (2019-02-13)
2151
+
2152
+ ### Schedule
2153
+
2154
+ #### Bug Fixes
2155
+
2156
+ - An issue that occurs on enabling the time interval for resizing in timeline day view has been fixed.
2157
+
2158
+ ## 16.4.52 (2019-02-05)
2159
+
2160
+ ### Schedule
2161
+
2162
+ #### New Features
2163
+
2164
+ - Improvements done to support creation of recurring events based on the recurrence rule properties, that lies under the criteria of limited combination.
2165
+ - The recurring appointments of Scheduler can be now created and processed successfully based on the Islamic calendar dates.
2166
+
2167
+ ## 16.4.47 (2019-01-16)
2168
+
2169
+ ### Schedule
2170
+
2171
+ #### Bug Fixes
2172
+
2173
+ - An issue with event display order getting changed within the more event container of timeline views has been fixed.
2174
+ - 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.
2175
+
2176
+ ## 16.4.45 (2019-01-02)
2177
+
2178
+ ### Schedule
2179
+
2180
+ #### Bug Fixes
2181
+
2182
+ - An issue with the display of `+n more popup` on Scheduler, while setting appointment time in seconds has been fixed.
2183
+
2184
+ ## 16.4.44 (2018-12-24)
2185
+
2186
+ ### Schedule
2187
+
2188
+ #### Bug Fixes
2189
+
2190
+ - An issue with `quick popup` opening on blocked time ranges has been fixed.
2191
+
2192
+ ## 16.4.42 (2018-12-14)
2193
+
2194
+ ### Schedule
2195
+
2196
+ #### New Features
2197
+
2198
+ - Provided support to display Scheduler in Islamic calendar mode.
2199
+
2200
+ ## 16.4.40-beta (2018-12-10)
2201
+
2202
+ ### Schedule
2203
+
2204
+ #### New Features
2205
+
2206
+ - A specific time range can be blocked on Scheduler now, to prevent the creation of appointments in that time slot.
2207
+ - Specific events can be made read-only, restricting any CRUD actions.
2208
+ - Load resources and appointments of timeline views virtually on every scroll action.
2209
+
2210
+ #### Bug Fixes
2211
+
2212
+ - An issue that occurs with BYDAY rule option, while defining day names in different order has been fixed.
2213
+ - An issue with `eventClick` client-side event not triggering, while selecting multiple appointments by pressing `ctrl` key and mouse click combination has been fixed.
2214
+ - An issue with wrong display of + more count indicator in all-day row has been fixed.
2215
+
2216
+ - An issue with form controls used within editor template not showing proper values has been fixed.
2217
+
2218
+ #### Breaking Changes
2219
+
2220
+ - The default value of `allowVirtualScrolling` has been changed to `false`.
2221
+
2222
+ ## 16.3.32 (2018-11-13)
2223
+
2224
+ ### Schedule
2225
+
2226
+ #### Bug Fixes
2227
+
2228
+ - An issue with date and time displaying wrongly on `quick popup` in the presence of Daylight Saving Time has been fixed.
2229
+
2230
+ ## 16.3.31 (2018-11-07)
2231
+
2232
+ ### Schedule
2233
+
2234
+ #### Breaking Changes
2235
+
2236
+ - Misalignment issue with edit and delete icons on edit `event popup` has been fixed.
2237
+
2238
+ ## 16.3.29 (2018-10-31)
2239
+
2240
+ ### Schedule
2241
+
2242
+ #### New Features
2243
+
2244
+ - Support to drag and drop an item from external source into scheduler and vice versa has been provided.
2245
+ - In mobile devices, drag and drop support has been enabled by tap holding and moving the appointments over the time slots.
2246
+ - 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.
2247
+ - Scrolling action has been improved to enable smooth scrolling, while dragging an appointment to any of the view port extremities.
2248
+
2249
+ ## 16.3.24 (2018-10-09)
2250
+
2251
+ ### Schedule
2252
+
2253
+ #### Bug Fixes
2254
+
2255
+ - Misalignment issue with header cells of timeline views in Safari browser has been fixed.
2256
+ - An issue with appointment resizing, when the scheduler is placed at bottom in a container that has scroll-able height has been fixed.
2257
+
2258
+ ## 16.3.23 (2018-10-03)
2259
+
2260
+ ### Schedule
2261
+
2262
+ #### Bug Fixes
2263
+
2264
+ - An issue with scheduler throwing script error while rendering it as hidden element has been fixed.
2265
+
2266
+ ## 16.3.17 (2018-09-12)
2267
+
2268
+ ### Schedule
2269
+
2270
+ #### New Features
2271
+
2272
+ - **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.
2273
+ - **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.
2274
+ - **Drag and Drop** - Appointments can be easily rescheduled to some other time, by dragging and dropping it onto the required time slots.
2275
+ - **Resize** - Appointment’s time can be easily extended either by resizing its start or end handlers.
2276
+ - **Week Number** - Support added to display the week number of the current date, beside the date header section.
2277
+ - Provided template support for customizing `quick popup`, that opens while clicking on the cells or appointments.
2278
+ - The data type of the appointment ID field is made compatible to accept both string and number type values.
2279
+
2280
+ #### Bug Fixes
2281
+
2282
+ - An issue with customization done on `quick popup` getting lost, while clicking on the same target twice has been fixed.
2283
+
2284
+ ## 16.2.47 (2018-08-07)
2285
+
2286
+ ### Schedule
2287
+
2288
+ #### Bug Fixes
2289
+
2290
+ - 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.
2291
+
2292
+ ## 16.2.46 (2018-07-30)
2293
+
2294
+ ### Schedule
2295
+
2296
+ #### Bug Fixes
2297
+
2298
+ - An issue with creation of weekly recurrence appointment, without providing `repeat every` field value has been fixed.
2299
+ - An issue that occurred due to the improper destroy action on sub-components of scheduler has been fixed.
2300
+
2301
+ ## 16.2.44 (2018-07-10)
2302
+
2303
+ ### Schedule
2304
+
2305
+ #### Bug Fixes
2306
+
2307
+ - An issue with delete icon not displaying in a disabled state on `quick popup`, when scheduler is set to `readonly` has been fixed.
2308
+
2309
+ ## 16.2.43 (2018-07-03)
2310
+
2311
+ ### Schedule
2312
+
2313
+ #### Bug Fixes
2314
+
2315
+ - An issue with recurrence validation while using editor template has been fixed.
2316
+ - An issue with recurring events on day view, created with UNTIL and WEEKLY rule combination has been fixed.
2317
+ - An alignment issue with recurrence editor in bootstrap theme has been fixed.
2318
+ - An issue with highlighting current day in month view, when `firstDayOfWeek` is set with the value other than `Sunday` has been fixed.
2319
+ - An issue while customizing `quick popup` with normal HTML buttons has been fixed.
2320
+
2321
+ ## 16.2.41 (2018-06-25)
2322
+
2323
+ ### Schedule
2324
+
2325
+ #### New Features
2326
+
2327
+ - Distinct time interval option with customizable major and minor slots has been introduced to view the appointments clearly and accurately.
2328
+ - An enhancement has been made to extend the default view range with customized intervals, to display 'n' number of days, weeks and months.
2329
+ - Validation support on recurrence appointment(s) has been added.
2330
+ - Multiple resources support has been added with the following options.
2331
+ - **Group By Child** - To group the same child resource(s) under different parent resource(s).
2332
+ - **Group By Date** - To group the resource(s) on day basis.
2333
+ - **Group Editing** - To edit all resource events simultaneously.
2334
+ - **Custom Work Days** - To display the custom work days for each resource.
2335
+ - Provided public methods to add or remove the resources dynamically.
2336
+
2337
+ #### Bug Fixes
2338
+
2339
+ - An issue with time format not displaying according to the given culture issue has been fixed.
2340
+ - A script error occurring while enabling or disabling the time indicator option in Agenda view issue has been fixed.
2341
+ - An issue with event not displayed in day and week views, when set with same start and end time has been fixed.
2342
+ - An issue with displaying yearly recurrence event has been fixed.
2343
+
2344
+ ##### Breaking Changes
2345
+
2346
+ - Type of `id` property within the `eventSettings.field` has been changed from `object` type to `string`.
2347
+ - 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.
2348
+
2349
+ ## 16.1.37 (2018-04-24)
2350
+
2351
+ ### Schedule
2352
+
2353
+ #### Bug Fixes
2354
+
2355
+ - An issue with recurrence events created with UNTIL rule, which doesn't rendered on day view is fixed.
2356
+ - An issue with buttons of quick window not getting disabled, while setting `readonly` property has been fixed.
2357
+
2358
+ ## 16.1.28 (2018-03-09)
2359
+
2360
+ ### Schedule
2361
+
2362
+ #### Bug Fixes
2363
+
2364
+ - Problem with all-day appointments that are created for spanned timeline in work week view is fixed.
2365
+ - Traversing order of appointments while pressing `Tab` key and `Shift+Tab` combination keys is corrected.
2366
+
2367
+ ## 16.1.24 (2018-02-22)
2368
+
2369
+ ### Schedule
2370
+
2371
+ 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.
2372
+
2373
+ - **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.
2374
+ - **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.
2375
+ - **Recurrence** - Allows the user to repeat a set of events on a daily, weekly, monthly, or yearly basis.
2376
+ - **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.
2377
+ - **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.
2378
+ - **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.
2379
+ - **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.
2380
+ - **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.
2381
+ - **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.
2382
+ - **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.
2383
+ - **RTL** - Supports displaying the component to display in the direction from right to left.## 26.2.7 (2024-07-30)
2384
+
2385
+ ### Schedule
2386
+
2387
+ #### Bug fixes
2388
+
2389
+ - `#I614002` - Interacting with the scheduler after printing using the `print` method with print options throws Script error has been fixed.
2390
+
2391
+ ## 16.4.48 (2019-01-22)
2392
+
2393
+ ### Schedule
2394
+
2395
+ #### Bug Fixes
2396
+
2397
+ - An issue with retrieving event fields value within the event template of Agenda view has been fixed.
2398
+
2399
+ ## 16.3.30 (2018-11-01)
2400
+
2401
+ ### Schedule
2402
+
2403
+ #### Bug Fixes
2404
+
2405
+ - An issue with the template options of `headerRows` property, while defining it within the angular template has been fixed.
2406
+
2407
+ ## 16.3.22 (2018-09-25)
2408
+
2409
+ ### Schedule
2410
+
2411
+ #### Bug Fixes
2412
+
2413
+ - An issue with the options of `quickInfoTemplates` API, while defining it within the angular template has been fixed.