@syncfusion/ej2-schedule 23.2.4 → 23.2.7

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.
@@ -12487,7 +12487,7 @@ class EventWindow {
12487
12487
  this.eventData = this.eventCrudData ? this.eventData : eventData;
12488
12488
  const eventObj = extend({}, eventData, null, true);
12489
12489
  const formElements = this.getFormElements(EVENT_WINDOW_DIALOG_CLASS);
12490
- if (this.parent.isReact && formElements.length < 1) {
12490
+ if (this.parent.isReact && formElements.length < 1 && !this.cellClickAction) {
12491
12491
  this.eventCrudData = eventObj;
12492
12492
  return;
12493
12493
  }
@@ -20749,6 +20749,11 @@ class YearEvent extends TimelineEvent {
20749
20749
  (resetTime(appStart).getTime() >= dateStart) && (resetTime(appEnd).getTime() <= dateEnd)) {
20750
20750
  appointmentsList.push(app);
20751
20751
  }
20752
+ else if (this.parent.activeViewOptions.orientation === 'Vertical') {
20753
+ if (resetTime(appStart).getTime() >= dateStart && resetTime(appEnd).getTime() >= dateEnd) {
20754
+ appointmentsList.push(app);
20755
+ }
20756
+ }
20752
20757
  }
20753
20758
  return appointmentsList;
20754
20759
  }