Class View.ReadyEvent

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

public static class View.ReadyEvent extends com.vaadin.flow.component.ComponentEvent<View<?>>
The last (after View.BeforeShowEvent) event in the view opening process.

In this event listener, you can make final configuration of the view according to loaded data and show notifications or dialogs:

     @Subscribe
     protected void onReady(ReadyEvent event) {
         notifications.show("Just opened");
     }
 
See Also:
  • Constructor Details

    • ReadyEvent

      public ReadyEvent(View<?> source)