Here's how I would do a FormPanel (programmatically...same principles apply to UiBinder methods):
final FormPanel form = new FormPanel();
form.setEncoding(FormPanel.ENCODING_MULTIPART);
form.setMethod(FormPanel.METHOD_POST);
VerticalPanel fieldContainer = new VerticalPanel();
final TextBox nameField = new TextBox();
nameField.setName("name");
Button submitButton = new Button("Submit", new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
form.submit();
}
});
fieldContainer.add(nameField);
fieldContainer.add(submitButton);
form.setWidget(fieldContainer);
form.addSubmitHandler(new SubmitHandler() {
@Override
public void onSubmit(SubmitEvent event) {
if (!doFormValidation()) {
// the form isn't ready...display some error?
event.cancel();
}
}
});
someContainer.add(form);
The doFormValidation() method can be pure Java or some native JS method that runs a JQuery validation, whatever you want or need. The reason you need to do form validation this way is you can't query the SubmitEvent for any of the form elements.
Hope that helps.