Examples of DragFunction


Examples of gwtquery.plugins.draggable.client.DraggableOptions.DragFunction

    $("#simpleDraggable").as(Draggable).draggable(o);
  }

  private DraggableOptions createOptionsForSimpleDraggable() {
    DraggableOptions o = new DraggableOptions();
    o.setOnDragStart(new DragFunction() {
      public void f(DragContext context) {
        startCounter++;
        $("#startCounter").html("" + startCounter);

      }
    });

    o.setOnDrag(new DragFunction() {
      public void f(DragContext context) {
        dragCounter++;
        $("#dragCounter").html("" + dragCounter);
      }
    });

    o.setOnDragStop(new DragFunction() {
      public void f(DragContext context) {
        stopCounter++;
        $("#stopCounter").html("" + stopCounter);
      }
    });
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.