views:

232

answers:

1

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!

+1  A: 

Check out this ticket (find the github link)

fudgey
Good stuff, I actually found that already and it works indeed.
Ropstah