DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block |
|---|
public class Component extends Panel
{
public Component()
{
super( "component" );
add( new Label( "name" ), "component 1" );
}
}
|
Component.html
| Code Block | ||||
|---|---|---|---|---|
| ||||
Component.html
<html>
<wicket:panel>
<span wicket:id="name">component name</span>
</wicket:panel>
</html>
|