3.2.0

Tree Drag and Drop

Does anyone know how I can capture the Internet Explorer drop event in a Tree.
cheers
mo_pour
August 1,
tree.setEvent("ondrop", function(event){
alert(event.srcElement.id);
});

tree.setEvent("ondragenter", function(event){
window.event.returnValue = false;
});

tree.setEvent("ondragover", function(event){
window.event.returnValue = false;
});
Alex (ActiveWidgets)
August 7,

This topic is archived.

See also:


Back to support forum