<FullCalendar
id="calendario"
header={{
left: 'prev,next today myCustomButton',
center: 'title',
right: 'month,agendaWeek,agendaDay'
}}
navLinks={true}
nowIndicator={true}
viewRender={(view, element) => {
this.handleChangeView(view);
}}
selectable={true}
editable={true}
droppable={true}
eventDrop={function(eventBj, date) {
console.log('eventDrop function');
}}
drop={(date, jsEvent, ui, resourceId) => {
console.log('drop function');
}}
select={(start, end, allDay) => {
this.handleSelect(start, end, allDay);
}}
eventClick={(calEvent, jsEvent, view) => {
this.handleClick(calEvent, jsEvent, view);
}}
events={events}
/>
I am not being able to drop external events on the calendar.
The calendar renders correctly, and the functions
selectandeventClickworks as expected.I wanted to know now how to be able to drop external events in the calendar...
I've been reading the fullcalendar.io documentation and I'm not really able to do what I want.
The setting I am using is as follows:
I'm including jQuery-UI and the event triggers the
draggable, I can hover with the external-event over the calendar.