Class PopupButton.PopupOpenEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.vaadin.flow.component.ComponentEvent<Component>
-
- com.vaadin.flow.component.spreadsheet.PopupButton.PopupOpenEvent
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- PopupButton
public static class PopupButton.PopupOpenEvent extends ComponentEvent<Component>
An event fired after the pop-up button returned bygetPopupButton()
has been clicked and the pop-up has been opened.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description PopupOpenEvent(Component source)
Constructs a new open event for the given PopupButton.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PopupButton
getPopupButton()
Gets thePopupButton
where the event occurred.-
Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListener
-
Methods inherited from class java.util.EventObject
toString
-
-
-
-
Constructor Detail
-
PopupOpenEvent
public PopupOpenEvent(Component source)
Constructs a new open event for the given PopupButton.- Parameters:
source
- PopupButton component that has been opened.
-
-
Method Detail
-
getPopupButton
public PopupButton getPopupButton()
Gets thePopupButton
where the event occurred.- Returns:
- PopupButton component that has been opened.
-
-