Package com.google.code.jqwicket.ui.draggable

Examples of com.google.code.jqwicket.ui.draggable.DraggableOptions


    super(id);
    super.add(new DraggableBehavior(newDraggableOptions()));
  }

  protected DraggableOptions newDraggableOptions() {
    return new DraggableOptions().appendTo("body").helper("clone");
  }
View Full Code Here


        // Create accordion containing dummy products
        AccordionWebMarkupContainer accordion = new AccordionWebMarkupContainer(
                "catalog");
        for (Map.Entry<String, String> e : labels.entrySet()) {
            accordion.add(new Label(e.getKey(), e.getValue()).add(JQBehaviors
                    .draggable(new DraggableOptions().appendTo("body").helper(
                            "clone"))));
        }
        add(accordion);

        // Create shopping cart webmarkup container
View Full Code Here

TOP

Related Classes of com.google.code.jqwicket.ui.draggable.DraggableOptions

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.