Package org.wicketstuff.jwicket.ui.dragdrop

Examples of org.wicketstuff.jwicket.ui.dragdrop.DroppableBehavior


    dragger.setOpacity(0.99);
    dragger.setWantOnDragStopNotification(true);
    dragger.setName("one");


    dropper = new DroppableBehavior();
    dropper.setHoverClass("hoverClass");
    dropper.setActiveClass("activeClass");
    dropper.setTolerance(DroppableBehavior.DropTolerance.TOUCH);
    if (accepted != null)
      dropper.setDraggablesAcceptedByDroppable(accepted);
View Full Code Here


  public DroppableElement(final String id, final IModel<String> model,
              final DraggablesAcceptedByDroppable accepted) {
    super(id, model);

    dropper = new DroppableBehavior();
    dropper.setHoverClass("hoverClass");
    dropper.setActiveClass("activeClass");
    dropper.setTolerance(DroppableBehavior.DropTolerance.TOUCH);
    if (accepted != null)
      dropper.setDraggablesAcceptedByDroppable(accepted);
View Full Code Here

  public DroppableElement(final String id, final IModel<String> model,
              final DraggablesAcceptedByDroppable accepted) {
    super(id, model);

    dropper = new DroppableBehavior();
    dropper.setHoverClass("hoverClass");
    dropper.setActiveClass("activeClass");
    dropper.setTolerance(DroppableBehavior.DropTolerance.TOUCH);
    if (accepted != null)
      dropper.setDraggablesAcceptedByDroppable(accepted);
View Full Code Here

TOP

Related Classes of org.wicketstuff.jwicket.ui.dragdrop.DroppableBehavior

Copyright © 2018 www.massapicom. 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.