Hi all.
I have some Canvas object called img and I assigned to it DropEvent.
img.addDropHandler(new DropHandler() {
@Override
public void onDrop(DropEvent event) {
Window.alert("Drop");
}
});
Since I had used SmartGwt2.1 version it works, after ugrading to 2.2 nope :(.
Thanks for any help.
I have some Canvas object called img and I assigned to it DropEvent.
img.addDropHandler(new DropHandler() {
@Override
public void onDrop(DropEvent event) {
Window.alert("Drop");
}
});
Since I had used SmartGwt2.1 version it works, after ugrading to 2.2 nope :(.
Thanks for any help.
Comment