Class EditorExitEvent

All Implemented Interfaces:
Cancellable

public class EditorExitEvent extends AbstractSmartEvent<EditorExitHandler> implements Cancellable
  • Constructor Details

  • Method Details

    • fire

      public static <S extends HasEditorExitHandlers & 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<EditorExitHandler> getType()
      Gets the type associated with this event.
      Returns:
      returns the handler type
    • dispatch

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

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

      public void cancel()
      Calling this method will cancel the default behavior (for example saving the row) and leave the editor visible and focus in this edit cell.
      Specified by:
      cancel in interface Cancellable
    • isCancelled

      public boolean isCancelled()
      Specified by:
      isCancelled in interface Cancellable
      Returns:
      true if cancelled
    • getEditCompletionEvent

      public EditCompletionEvent getEditCompletionEvent()
      What interaction triggered this edit cell exit
      Returns:
      What interaction triggered this edit cell exit
    • getRecord

      public ListGridRecord getRecord()
      record for the cell being edited
      Returns:
      record for the cell being edited
    • getNewValue

      public Object getNewValue()
      new edit value for the cell being edited. Note that if the user has not made any changes this will be undefined
      Returns:
      new edit value for the cell being edited. Note that if the user has not made any changes this will be undefined
    • getRowNum

      public int getRowNum()
      row number for the cell
      Returns:
      row number for the cell
    • getColNum

      public int getColNum()
      column number of the cell
      Returns:
      column number of the cell
    • getGrid

      public ListGrid getGrid()
      ListGrid to which this field belongs
      Returns:
      ListGrid to which this field belongs