У меня есть Fullcalendar 3 в сочетании с плагином Scheduler (и я работаю на jquery 1.11 и jqueryUI 1.12, хотя я думаю, что версии jquery не актуальны, так как эти версии не используются в jsFiddle ниже)
Когда я перетаскиваю событие в календаре, оно становится невидимым.
Мне бы хотелось, чтобы оно оставалось видимым, как показано в примерах самого планировщика Fullcalendar https://fullcalendar.io/scheduler
Я сделал jsfiddleчтобы продемонстрировать
https://jsfiddle.net/q5t43ga1/
Прокрутите до 24 февраля 2019, 12:00, чтобы увидеть событие.
HTML
<div id="calendar"></div>
Javascript
$('#calendar').fullCalendar({
defaultView: 'timelineDay', //agendaWeek
locale: 'nl',
timezone: 'local',
themeSystem: 'bootstrap3',
height: 200,
slotDuration: '00:10:00',
nowIndicator: 'true',
minTime: "20:00:00", // this makes the calendar start at 8PM
maxTime: "44:00:00", // this makes the calender end 24 hours later at 8PM ( (8PM => 20) + 24 = 44)
schedulerLicenseKey: 'CC-Attribution-NonCommercial-NoDerivatives',
editable: true, // enable draggable events
droppable: true, // this allows things to be dropped onto the calendar
eventResize: function(event) { // called when an event (already on the calendar) is resized
},
events: {
events: [
{
title : 'event2',
start : '2019-02-25',
end : '2019-02-27'
}
]
}
})
См. Прикрепленные изображения ниже
Событие является видимым
При перетаскивании событие невидимо