BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
//define drop event
DiagramContent.ClientDrop = "drop";
function drop(args){
if(args.source.cssClass && args.source.cssClass.indexOf("symbolpalette")!==-1 ){
//do the dragState===”completed” code here.
}
}
Regards,
Shyam G
$("#diagram").ejDiagram({
dragOver: dragOver,
});
function dragOver(args) {
//do your code here
}
Regards,
Shyam G