Fullcalendar - drag an event to another week in the agenda window

Can I drag the fullcalendar event to another week while in the AgendaWeek view?

I created a basic implementation of fullcalendar, where you can drag and drop during this week, but it is impossible to move the event to another week; How should I approach this problem? (Without using a monthly view, since in this view it is impossible to drag at a specific time)

http://jsfiddle.net/wbse7uy7/2/

  var calendar = $('#calendar').fullCalendar({
  defaultView: 'agendaWeek',
  editable: true,
    selectable: false,
      allDaySlot: false,
  //header and other values
      events: [
            {
                title: 'Meeting',
                start: '2014-10-13T10:30:00',
                end: '2014-10-13T12:30:00',
                allDay: false
            }],

});
+4
source share

All Articles