Hi,
I'm working on implementing the Schedule control in a VUE application. I have a problem with activating drag and drop. I see the appointments from the datamanager, but I cannot drag, drop and resize them.
My datamanager:
var dataManger = new DataManager({
url: 'api/calendar/events2',
crudUrl: 'api/calendar/events2',
adaptor: new UrlAdaptor()
})
My scheduler looks like this:
<ejs-schedule id="Schedule" :event-settings="eventSettings" :allow-drag-and-drop="true" :enable-appointment-resize="true"
:event-click="eventClick" :locale="locale" :first-day-of-week="firstday" :height="height"
:time-scale="timeScale" :selected-date="selectedDate" :drag="onItemDrag"
:event-rendered="oneventRendered" width="100%">
And my eventSettings: {dataSource: dataManger}.
Anyone knows what i'm doing wrong?
p.s. there is no Schedule control category when I created this thread.