Class FormSubmitCompleteEvent

java.lang.Object
java.util.EventObject
com.google.gwt.user.client.ui.FormSubmitCompleteEvent
All Implemented Interfaces:
Serializable

public class FormSubmitCompleteEvent extends EventObject
Event object containing information about form submission events.
See Also:
  • Constructor Details

    • FormSubmitCompleteEvent

      public FormSubmitCompleteEvent(FormPanel source, String resultHtml)
      Creates a new event with information about the source and submit results.
      Parameters:
      source - the object sending the event
      resultHtml - the result html returned by the server
  • Method Details

    • getResults

      public String getResults()
      Gets the result text of the form submission.
      Returns:
      the result html, or null if there was an error reading it
      Tip:
      The result html can be null as a result of submitting a form to a different domain.