Package org.wicketstuff.scriptaculous.dragdrop

Examples of org.wicketstuff.scriptaculous.dragdrop.DraggableBehavior


public class DragDropExamplePage extends WebPage
{
  public DragDropExamplePage()
  {
    WebMarkupContainer product1 = new WebMarkupContainer("product1");
    product1.add(new DraggableBehavior());

    WebMarkupContainer product2 = new WebMarkupContainer("product2");
    product2.add(new DraggableBehavior());

    List<String> objects = new ArrayList<String>();
    objects.add("item1");
    objects.add("item3");
    objects.add("item2");
View Full Code Here

TOP

Related Classes of org.wicketstuff.scriptaculous.dragdrop.DraggableBehavior

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.