DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
You can use the same technique described in http://cwiki.apache.org/WICKET/forms-with-dynamic-elements.html
to dynamically add components to a page.
...
| Code Block |
|---|
public class Component extends Panel
{
public Component()
{
super( "component" );
add( new Label( "name" ), "component 1" );
}
}
|
...