91dj85
7 Jun 2009, 10:06 AM
Hello,
How to cancel a drag & drop in reordering tree
Example :
TreeDragSource source = new TreeDragSource(binder);
source.addDNDListener(new DNDListener() {
@Override
public void dragDrop(DNDEvent e) {
e.doit = false;
e.status.setStatus(false);
e.stopEvent();
}
});
but it don't work
Thank you
How to cancel a drag & drop in reordering tree
Example :
TreeDragSource source = new TreeDragSource(binder);
source.addDNDListener(new DNDListener() {
@Override
public void dragDrop(DNDEvent e) {
e.doit = false;
e.status.setStatus(false);
e.stopEvent();
}
});
but it don't work
Thank you