Class View.AfterCloseEvent

java.lang.Object
java.util.EventObject
com.vaadin.flow.component.ComponentEvent<View<?>>
io.jmix.flowui.view.View.AfterCloseEvent
All Implemented Interfaces:
Serializable
Enclosing class:
View<T extends com.vaadin.flow.component.Component>

public static class View.AfterCloseEvent extends com.vaadin.flow.component.ComponentEvent<View<?>>
The second (after View.BeforeCloseEvent) event in the view closing process.

In this event listener, you can show notifications or dialogs after closing the view, for example:

     @Subscribe
     protected void onAfterClose(AfterCloseEvent event) {
         notifications.show("Just closed");
     }
 
See Also: