Exemplo n.º 1
0
 protected void startDrag(DragEvent de) {
   dragging = true;
   WindowManager.get().bringToFront(this);
   hideShadow();
   ghost = ghost();
   if (eventPreview != null && ghost != null) {
     eventPreview.getIgnoreList().add(ghost.dom);
   }
   showWindow(false);
   Draggable d = de.getDraggable();
   d.setProxy(ghost);
 }
Exemplo n.º 2
0
 protected void unghost(DragEvent de) {
   showWindow(true);
   setPagePosition(de.getX(), de.getY());
 }