Issue 1698: External sortable elements cannot be dropped onto agenda view
Status:  Released
Owner: ----
Closed:  Feb 2015
Reported by christop...@orange.fr, Feb 16, 2013
Hi all,

I try to drag an item from a sortable event list to drop it to fullcalendar.

I have not managed to find any information about it but perhaps someone has already done it once.

Here is the jsfiddle: http://jsfiddle.net/gtbm/VjNFn/2/

I hope u could help, 
Thanks in advance, C

Feb 21, 2013
#1 christop...@orange.fr
I manage to find a solution for both dragabble and sortable lists in MONTH VIEW ONLY.

You can find the jsfiddle here: http://jsfiddle.net/VjNFn/16/

I dont think, it is the good solution because it does not work for week and day ????

Any ideas please !
Mar 6, 2013
#2 christop...@orange.fr
I try to show the solution, but i dont manage to get it work ...
http://jsfiddle.net/VjNFn/19/

What u r not found in this jsfiddle is this to add in the fullcalendar.js

/* External Dragging
------------------------------------------------------------------------*/
if (options.droppable) {
$(document)
// To add in calendar function ***********************************
	.bind("sortstart", function(ev, ui) { 
		_dragElement = ev.target;
		currentView.dragStart(_dragElement, ev, ui);	
	})
	.bind("sortstop", function(ev, ui) {
		if (_dragElement) {
			currentView.dragStop(_dragElement, ev, ui);
			_dragElement = null;
		}						
	})		
	// **********************************************		
	...

I hope it helps, C
Aug 22, 2013
Project Member #3 adamrs...@gmail.com
(No comment was entered for this change.)
Summary: External sortable elements cannot be dropped onto agenda view (was: Drag from a sortable list to fullcalendar)
Status: Accepted
Labels: Type-Bug
Feb 20, 2015
Project Member #4 adamrs...@gmail.com
I'm 99% this is fixed with this comment (not yet released):
https://github.com/arshaw/fullcalendar/commit/fb24adb2fa53a4a48b2047c6a04e98507f68544c

If, possible, could you verify that this fix works?
Status: Implemented
Feb 21, 2015
Project Member #6 adamrs...@gmail.com
This has been released. Thanks!
https://github.com/arshaw/fullcalendar/releases/tag/v2.3.0
Status: Released