Hi all.
I wanna have a popup shown next to the mouse pointer. How can i access screenX/Y within dragLanding? See example below
grid.dragger.addDragLanding(dragZone, {
_drag : function(sourceHtmlObject,dhtmlObject,targetHtmlObject) {
// Create a dhx popup, fill it
var myPop = new dhtmlXPopup();
var myForm = myPop.attachList("name",[ {id:1, name:"Get"}, {id:2, name:"Set"}]);
// show popup next to the mouse pointer, e not available :-(
myPop.show(e.screenX, e.screenY, 1, 1);
},
_dragIn : function(htmlObject, shtmlObject) { return htmlObject; },
_dragOut : function(htmlObject) { return this; }
});