Anonymous - 2012-07-11

Hello

i use this to detect drop events

DroppableControl dropable = rHand2.getControl(DroppableControl.class);

if (dropable != null) {

dropable.addFilter(new DroppableDropFilter() {

public boolean accept(Droppable drpbl, Draggable drgbl, Droppable drpbl1) {

......

return false;

}

});

}

but i cant change the image of the dragged element within the accept()
function, otherwise the gui gets freezed

how do i submit changes to the dragged element after it has been dropped ??

thanks