Package org.wicketstuff.yui.markup.html.sortable

Examples of org.wicketstuff.yui.markup.html.sortable.SortableItem


    add(container);

    RepeatingView view = new RepeatingView("sortableItem");
    List<String> list = choices;
    for (int a = 0; a < list.size(); a++) {
      SortableItem item = new SortableItem(view.newChildId());
      view.add(item);
      item.add(new Label("label", list.get(a)));
    }
    container.add(view);
  }
View Full Code Here

TOP

Related Classes of org.wicketstuff.yui.markup.html.sortable.SortableItem

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.