ghost, border dragg effect on gwt , gwtquery

166 views Asked by At

I'm trying to implement ghost effect on drag operation on gwt, i'm using gwtquery, maybe it also known as border drag effect.. does anyone has an idea to implement it? note: i know it can be implemented easyly with jquery but i want to stick with gwt.

1

There are 1 answers

2
jdramaix On BEST ANSWER

Try this code :

DraggableOptions options = new DraggableOptions();
options.setOpacity(0.5);
options.setHelper(HelperType.CLONE);

$("#myWidget").as(Draggable).draggable(options);