Hi,
I want to intercept the drop event, but it does not seem to be firing.
Looks pretty straight forward, but I'm obviously missing something.
I have the following on my aspx page:
function drop(cancel, element, model, type) {
alert('In drop');
}
<ej:Diagram ID="DiagramContent" runat="server" Height="100%" Width="100%" ClientDrop="drop" OnClientDrag="drag">
</ej:Diagram>Initially I just had function drop(args), but that didn't work either.
I also tried identifying the drop handler in code behind using:
DiagramContent.ClientDrop = "drop";What am I doing wrong?
Thanks in advance
Jim