DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
In your WebPage:
AjaxFallbackButton a = new AjaxFallbackButton("id", form) {
@Override
protected void onSubmit(AjaxRequestTarget target, Form form) {
if (target != null) {
// Ajax submission
} else {
// Normal submission
}
}
};
form.add(a);