Class EditCompleteEvent


public class EditCompleteEvent extends BrowserEvent<EditCompleteHandler>
  • Constructor Details

  • Method Details

    • getFiringCanvas

      public Canvas getFiringCanvas()
      Returns the Canvas firing the event.
      Returns:
      Canvas firing the event
    • fire

      public static <S extends HasEditCompleteHandlers & HasHandlers> void fire(S source, JavaScriptObject jsObj)
      Fires a open event on all registered handlers in the handler manager.If no such handlers exist, this method will do nothing.
      Type Parameters:
      S - The event source
      Parameters:
      source - the source of the handlers
      jsObj - the native event
    • getType

      public static GwtEvent.Type<EditCompleteHandler> getType()
      Gets the type associated with this event.
      Returns:
      returns the handler type
    • dispatch

      protected void dispatch(EditCompleteHandler handler)
      Specified by:
      dispatch in class GwtEvent<EditCompleteHandler>
    • getAssociatedType

      public final GwtEvent.Type<EditCompleteHandler> getAssociatedType()
      Specified by:
      getAssociatedType in class GwtEvent<EditCompleteHandler>
    • getRowNum

      public int getRowNum()
      current index of the row that was saved
      Returns:
      current index of the row that was saved
    • getColNum

      public int getColNum()
      index of the column that was saved, if applicable
      Returns:
      index of the column that was saved, if applicable
    • getNewValues

      public Map getNewValues()
      new values that were saved
      Returns:
      new values that were saved
    • getNewValuesAsRecord

      public Record getNewValuesAsRecord()
      new values that were saved
      Returns:
      new values that were saved
    • getOldValues

      public Record getOldValues()
      the complete original values from before the save occurred
      Returns:
      the complete original values from before the save occurred
    • getEditCompletionEvent

      public EditCompletionEvent getEditCompletionEvent()
      Event that led to the save
      Returns:
      Event that led to the save
    • getDsResponse

      public DSResponse getDsResponse()
      for DataSource saves, DSResponse object returned
      Returns:
      for DataSource saves, DSResponse object returned