Hi,
We just came across with an issue, that i hope you can help me on, as soon as possible.
The drag&drop feature is not working on Safari browser for Mac.
Seems like the drop event is not reached at all.
Example
I have this:
function HandleDragIn() {
return true;
}
function HangleDrag(){
return true;
}
function HangleDrop(){
alert("test");
return true;
}
return true;
}
function HangleDrag(){
return true;
}
function HangleDrop(){
alert("test");
return true;
}
And then, i set the handlers:
[...]
mygrid.setDragBehavior("complex");
mygrid.enableDragAndDrop(true);
mygrid.setDragHandler(HangleDrag);
mygrid.setDropHandler(HangleDrop);
mygrid.setDragInHandler(HandleDragIn);
mygrid.setOnOpenEndHandler(OnOpenBranchEnd);
mygrid.init();
mygrid.loadXML()
mygrid.enableDragAndDrop(true);
mygrid.setDragHandler(HangleDrag);
mygrid.setDropHandler(HangleDrop);
mygrid.setDragInHandler(HandleDragIn);
mygrid.setOnOpenEndHandler(OnOpenBranchEnd);
mygrid.init();
mygrid.loadXML()
[...]
I should be getting the alert message, but i don't.
It works fine on the rest of the browsers.
Do you have any idea of why this is not working. It used to work fine in v1.2.
Thanks in advance!
Fernando