I noticed you have an example of External Drag and Drop using your Tree control and the standard scheduler. Is it possible to do this on the asp.net mvc scheduler from a different list that allows drag and drop(jquery)? I was able to call addEvent, but don’t know how to set the time based on where the item was dropped.
function init() {
scheduler.attachEvent("onExternalDragIn", function (id) {
scheduler.addEvent();
return true;
});
}
Thanks.