Drop custom jQuery UI draggable in FullCalendar plugin?
Posted
by ropstah
on Stack Overflow
See other posts from Stack Overflow
or by ropstah
Published on 2010-05-14T20:31:37Z
Indexed on
2010/05/14
20:34 UTC
Read the original article
Hit count: 474
jQuery
|fullcalendar
I need to be able to drop custom jQuery UI draggable objects on the FullCalendar plugin. How can this be done?
$(document).ready(function() {
$('.plannable_items li').draggable();
$('#fullcalendar').fullCalendar({
//onDrop : function(dropObject, dragObject) { } //This would be the solution ofcourse, however this doens't exist...
});
});
<div id="fullcalendar"></div>
<ul class="plannable_items">
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ul>
Any help would be greatly appreciated!
© Stack Overflow or respective owner