A repeater view that renders all of its children, using its body markup, in
the order they were added.
Example:
Java:
RepeatingView view = new RepeatingView("repeater");
view.add(new Label("1", "hello"));
view.add(new Label("2", "goodbye"));
view.add(new Label("3", "good morning"));
Markup:
<ul><li wicket:id="repeater"></li></ul>
Yields:
<ul><li>hello</li><li>goodbye</li><li>good morning</li></ul>
To expand a bit: the repeater itself produces no markup, instead every direct
child inherits the entire markup of the repeater. |