Hello, I'm using the latest version of all Syncfusion Angular components, in particular the Scheduler 20.3.58 and everything else is working fine.
Drag-n-drop (move) events within the scheduler in the TimelineWorkWeek view doesn't even move the object but after release of mouse button I get an event even though the object is still in it's original place.
I've tried to remove timeScale and interval but no change. No customized CSS.
<ejs-schedule #scheduleObj locale="sv" width='auto' height='100%' [(selectedDate)]='selectedDate' [(currentView)]="currentView" interval="2" [eventSettings]="eventSettings" [group]='group' (renderCell)="onRenderCell($event)"
(eventClick)="onEventClick($event)" (eventRendered)="eventRendered($event)" [rowAutoHeight]="true" [allowDragAndDrop]="true"
(drag)="drag($event)" (dragStart)="onDragStart($event)" (dragStop)="onDragStop($event)" (popupOpen)="onPopupOpen($event)" (cellClick)="onCellClick($event)"
(cellDoubleClick)="onCellDoubleClick($event)" [showQuickInfo]='showQuickInfo' (onCreated)="onCreated()" (hover)="onHover($event)" (onActionComplete)="onActionComplete($event)" (onActionBegin)="onActionBegin($event)" (navigating)="onNavigate($event)">
<e-views>
<e-view [displayName]="getTranslation('Day')" option="TimelineDay"></e-view>
<e-view [displayName]="getTranslation('1 week')" option="TimelineWorkWeek" timeScale="timeScaleOptions"></e-view>
<e-view [displayName]="getTranslation('2 weeks')" option='TimelineWorkWeek' [interval]="2" timeScale="timeScaleOptions"></e-view>
<e-view [displayName]="getTranslation('Month')" option="TimelineMonth"></e-view>
<e-view option="Agenda"></e-view>
</e-views>
@import "https://cdn.syncfusion.com/ej2/ej2-base/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-buttons/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-calendars/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-dropdowns/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-inputs/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-lists/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-angular-kanban/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-angular-schedule/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-layouts/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-angular-layouts/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-navigations/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-grids/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-treegrid/styles/bootstrap5.css";
@import "https://cdn.syncfusion.com/ej2/ej2-angular-gantt/styles/bootstrap5.css";
Any ideas on how to enable drag-n-drop in the TimelineWorkWeek