public static final int STRING_MIN_LENGTH = 3;
public void formSubmit(IRequestCycle cycle)
{
WorkbenchValidationDelegate delegate = (WorkbenchValidationDelegate) getBeans().getBean(
"delegate");
// If no error message, advance to the Results page,
// otherwise, stay here and show the error message.
if (!delegate.getHasErrors())
cycle.activate("FieldsResults");
}