Package com.google.gwt.user.client.ui
Interface FormHandler
-
- All Superinterfaces:
java.util.EventListener
@Deprecated public interface FormHandler extends java.util.EventListenerDeprecated.UseFormPanel.SubmitCompleteHandlerand/orFormPanel.SubmitHandlerinsteadHandler interface for form submit events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidonSubmit(FormSubmitEvent event)Deprecated.UseFormPanel.SubmitHandlerinsteadvoidonSubmitComplete(FormSubmitCompleteEvent event)Deprecated.UseFormPanel.SubmitCompleteHandlerinstead
-
-
-
Method Detail
-
onSubmit
@Deprecated void onSubmit(FormSubmitEvent event)
Deprecated.UseFormPanel.SubmitHandlerinsteadFired 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 void onSubmitComplete(FormSubmitCompleteEvent event)
Deprecated.UseFormPanel.SubmitCompleteHandlerinsteadFired when a form has been submitted successfully.- Parameters:
event- an event object containing information about the form submission
-
-