FullCalendar event dragging

0
Hey everyone,   I found this Widget on Github (GitHub - mendixlabs/CalendarWidget: This is a calendar widget for Mendix. It shows a Calendar and can render objects as events in it.) which is based on FullCalendar (https://fullcalendar.io/).  I want to implement draggable Events which seems to be possible regarding the documentation. But I don’t know how to set it up. Do I need to create a data view an paste the flags from the doc? Do I need to enable something in the settings? Could’nt find anything. Do I need to edit the source code?   I need help with this and would appreciate every comment that I get. Thanks in advance. 
asked
1 answers
0

To implement draggable events in the Mendix CalendarWidget based on FullCalendar, you will need to make some changes to the source code of the widget.

this.calendar = new FullCalendar.Calendar(calendarEl, {
  plugins: ['dayGrid', 'timeGrid', 'list'],
  defaultView: 'dayGridMonth',
  header: {
    left: 'prev,next today',
    center: 'title',
    right: 'dayGridMonth,timeGridWeek,timeGridDay,listMonth'
  },
  events: this.events,
  editable: true
});
 

answered