Hello all, im working with a ASP.Net MVC application using the Dhtmlx Scheduler library.
On my web page, I have a table with some information about tasks, using html5 I have enabled one of the:
cells to be draggable. Then in my scheduler, I have added the “onExternalDragIn” event.
Unfortunately, this event is not firing when I drag in the “td” cell.
As of now my event just as a simple alert(“dragged”) so I can test to see if the event fires, eventually I would like to schedule the task to the scheduler with a mix of getActionData and addEventNow methods.
Code for Reference:
scheduler.attachEvent("onExternalDragIn", function (id, source, e) {
alert("something is being dragged in");
});
<td draggable="true">
<span id="drag" class="glyphicon glyphicon-star"></span>
</td>
Thanks for your time and your help!