Class StandardEditor.AfterCommitChangesEvent

java.lang.Object
java.util.EventObject
io.jmix.ui.screen.StandardEditor.AfterCommitChangesEvent
All Implemented Interfaces:
Serializable
Enclosing class:
StandardEditor<T>

public static class StandardEditor.AfterCommitChangesEvent extends EventObject
Event sent after commit of data context from StandardEditor.commitChanges() call.
Use this event listener to notify users after commit, for example:
     @Subscribe
     protected void onAfterCommit(AfterCommitChanges event) {
         notifications.create().withCaption("Committed").show();
     }
 
See Also:
  • Constructor Details

    • AfterCommitChangesEvent

      public AfterCommitChangesEvent(Screen source)
  • Method Details