Examples of DemoDatatable


Examples of org.wicketstuff.datatables.DemoDatatable

  private static final long serialVersionUID = 1L;

  public HomePage()
  {
    WebMarkupContainer table = new DemoDatatable("table");
    add(table);

    List<String[]> rows = new ArrayList<String[]>();
    for (int i = 0; i < 50; i++)
    {
      rows.add(new String[] { "Foo" + i, "Bar" + i, "fizzbuzz" + i });
    }

    ListView<String[]> lv = new ListView<String[]>("rows", rows)
    {
      private static final long serialVersionUID = 1L;

      @Override
      protected void populateItem(ListItem<String[]> item)
      {
        String[] row = item.getModelObject();

        item.add(new Label("col1", row[0]));
        item.add(new Label("col2", row[1]));
        item.add(new Label("col3", row[2]));
      }
    };

    table.add(lv);
  }
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.