Package com.google.gwt.user.client.ui
Interface FormHandler
- All Superinterfaces:
EventListener
Deprecated.
Handler interface for form submit events.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onSubmit
(FormSubmitEvent event) Deprecated.UseFormPanel.SubmitHandler
insteadvoid
Deprecated.UseFormPanel.SubmitCompleteHandler
instead
-
Method Details
-
onSubmit
Deprecated.UseFormPanel.SubmitHandler
insteadFired when the form is submitted.The FormPanel must not be detached (i.e. removed from its parent or otherwise disconnected from a
RootPanel
) until the submission is complete. Otherwise, notification of submission will fail.- Parameters:
event
- an event object containing information about the form submission
-
onSubmitComplete
Deprecated.UseFormPanel.SubmitCompleteHandler
insteadFired when a form has been submitted successfully.- Parameters:
event
- an event object containing information about the form submission
-
FormPanel.SubmitCompleteHandler
and/orFormPanel.SubmitHandler
instead