blob: 2b2f141593813d30513ff91b14f64731f2b6b61c [file] [log] [blame]
/*
* $Id$
* $Revision$
* $Date$
*
* ====================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package wicket.examples.displaytag;
import java.util.List;
import wicket.PageParameters;
import wicket.examples.displaytag.utils.ListObject;
import wicket.examples.displaytag.utils.TableWithAlternatingRowStyle;
import wicket.examples.displaytag.utils.TestList;
import wicket.markup.html.basic.Label;
import wicket.markup.html.list.ListItem;
/**
* Nested table
*
* @author Juergen Donnerstag
*/
public class ExampleNestedTables extends Displaytag
{
/**
* Constructor.
*
* @param parameters Page parameters
*/
public ExampleNestedTables(final PageParameters parameters)
{
// Test data
List data = new TestList(6, false);
// straight forward
add(new TableWithAlternatingRowStyle("rows", data)
{
public void populateItem(final ListItem listItem)
{
final ListObject value = (ListObject) listItem.getModelObject();
listItem.add(new Label("id", Integer.toString(value.getId())));
listItem.add(new Label("status", value.getStatus()));
listItem.add(new Label("comments", value.getDescription()));
List data2 = new TestList(3, false);
// Just create a new table, which will be put into the current cell
listItem.add(new TableWithAlternatingRowStyle("rows", data2)
{
public void populateItem(final ListItem listItem)
{
final ListObject value = (ListObject) listItem.getModelObject();
listItem.add(new Label("name", value.getName()));
listItem.add(new Label("email", value.getEmail()));
}
});
}
});
}
}