Uses of Class
com.vaadin.flow.component.ComponentEvent
-
-
Uses of ComponentEvent in com.vaadin.flow.component
Classes in com.vaadin.flow.component with type parameters of type ComponentEvent Modifier and Type Interface Description interface
ComponentEventListener<T extends ComponentEvent<?>>
Generic listener for component events.Subclasses of ComponentEvent in com.vaadin.flow.component Modifier and Type Class Description static class
AbstractField.ComponentValueChangeEvent<C extends Component,V>
Value change event fired by components.class
AttachEvent
Event fired after aComponent
is attached to the UI.static class
BlurNotifier.BlurEvent<C extends Component>
Represents the DOM event "blur".class
ClickEvent<C extends Component>
Event fired when a component is clicked.class
CompositionEndEvent
The event when a composition is ended.class
CompositionStartEvent
The event when a composition is started.class
CompositionUpdateEvent
The event when a composition is updated.class
DetachEvent
Event fired before aComponent
is detached from the UI.static class
FocusNotifier.FocusEvent<C extends Component>
Represents the DOM event "focus".class
InputEvent
Event fired when the component has received any type of input (e.g.class
KeyDownEvent
The event when a key is pressed.class
KeyPressEvent
The event when a key is pressed.class
KeyUpEvent
The event when a key is released.class
PollEvent
An event that is fired whenever a client polls the server for asynchronous UI updates.Methods in com.vaadin.flow.component with type parameters of type ComponentEvent Modifier and Type Method Description protected <T extends ComponentEvent<?>>
RegistrationComponent. addListener(Class<T> eventType, ComponentEventListener<T> listener)
Adds a listener for an event of the given type.<T extends ComponentEvent<?>>
RegistrationComponentEventBus. addListener(Class<T> eventType, ComponentEventListener<T> listener)
Adds a listener for the given event type.<T extends ComponentEvent<?>>
RegistrationComponentEventBus. addListener(Class<T> eventType, ComponentEventListener<T> listener, Consumer<DomListenerRegistration> domListenerConsumer)
Adds a listener for the given event type, and customizes the corresponding DOM event listener with the given consumer.static <T extends ComponentEvent<?>>
RegistrationComponentUtil. addListener(Component component, Class<T> eventType, ComponentEventListener<T> listener)
Adds a listener for an event of the given type to thecomponent
.static <T extends ComponentEvent<?>>
RegistrationComponentUtil. addListener(Component component, Class<T> eventType, ComponentEventListener<T> listener, Consumer<DomListenerRegistration> domListenerConsumer)
Adds a listener for an event of the given type to thecomponent
, and customizes the corresponding DOM event listener with the given consumer.static <T extends ComponentEvent<?>>
Constructor<T>ComponentEventBusUtil. getEventConstructor(Class<T> eventType)
Gets the constructor to use for firing a component event, of the given type, based on a DOM event.static <T extends ComponentEvent<?>>
booleanComponentUtil. hasEventListener(Component component, Class<? extends T> eventType)
Check if the component has at least one registered listener of the given event type.Methods in com.vaadin.flow.component with parameters of type ComponentEvent Modifier and Type Method Description protected void
Component. fireEvent(ComponentEvent<?> componentEvent)
Dispatches the event to all listeners registered for the event type.void
ComponentEventBus. fireEvent(ComponentEvent event)
Dispatches the event to all listeners registered for the event type.static <T extends Component>
voidComponentUtil. fireEvent(T component, ComponentEvent<? extends T> componentEvent)
Dispatches the event to all listeners registered for the event type.Method parameters in com.vaadin.flow.component with type arguments of type ComponentEvent Modifier and Type Method Description static LinkedHashMap<String,Class<?>>
ComponentEventBusUtil. getEventDataExpressions(Class<? extends ComponentEvent<?>> eventType)
Gets a map of event data expression (forDomListenerRegistration.addEventData(String)
) to Java type, with the same order as the parameters for the event constructor (as returned byComponentEventBusUtil.getEventConstructor(Class)
).protected Collection<?>
Component. getListeners(Class<? extends ComponentEvent> eventType)
Returns all listeners that match or extend the given event type.Collection<?>
ComponentEventBus. getListeners(Class<? extends ComponentEvent> eventType)
Returns all listeners that match or extend the given event type.static Collection<?>
ComponentUtil. getListeners(Component component, Class<? extends ComponentEvent> eventType)
Returns all listeners that match or extend the given event type.protected boolean
Component. hasListener(Class<? extends ComponentEvent> eventType)
Checks if there is at least one listener registered for the given event type for this component.boolean
ComponentEventBus. hasListener(Class<? extends ComponentEvent> eventType)
Checks if there is at least one listener registered for the given event type. -
Uses of ComponentEvent in com.vaadin.flow.component.accordion
Subclasses of ComponentEvent in com.vaadin.flow.component.accordion Modifier and Type Class Description static class
Accordion.OpenedChangeEvent
An event fired when an Accordion is opened or closed. -
Uses of ComponentEvent in com.vaadin.flow.component.charts.events
Subclasses of ComponentEvent in com.vaadin.flow.component.charts.events Modifier and Type Class Description class
ChartAddSeriesEvent
The ChartAddSeriesEvent class stores data about new series added to an existing chart.class
ChartAfterPrintEvent
Fired after a chart is printed using the print menuclass
ChartBeforePrintEvent
Fired before a chart is printed using the print menuclass
ChartClickEvent
The ChartClickEvent class stores information on click events anywhere on the area of the chart.class
ChartDrillupAllEvent
ChartDrillupEvent triggered after all the series has been drilled up if chart has multiple drilldown seriesclass
ChartDrillupEvent
ChartDrillupEvent triggered when the 'Back to previous series' button is clickedclass
ChartLoadEvent
Fired after a chart is loadedclass
ChartRedrawEvent
Fired after a chart is redrawnclass
ChartSelectionEvent
The ChartSelectionEvent class stores information on selection events on the chart's area.class
DrilldownEvent
The DrilldownEvent class stores information on click events in drilldown pointsclass
PointClickEvent
The PointClickEvent class stores data for click events on the points of the chart.class
PointLegendItemClickEvent
The PointLegendItemClickEvent class stores information on click events on the charts's legend items that correspond to a chart point.class
PointMouseOutEvent
Fired when the mouse exits the neighborhood of a pointclass
PointMouseOverEvent
Fired when the mouse pointer moves within the neighborhood of a pointclass
PointRemoveEvent
The PointRemoveEvent class stores data for remove events on the points of the chartclass
PointSelectEvent
The PointSelectEvent class stores data for select events on the points of the chart.class
PointUnselectEvent
The PointUnselectEvent class stores data for unselect events on the points of the chart.class
PointUpdateEvent
The PointUpdateEvent class stores data for update events on the points of the chartclass
SeriesAfterAnimateEvent
Fired after a chart series is animatedclass
SeriesCheckboxClickEvent
SeriesCheckboxClickEvent triggered when a checkbox in a legend is clickedclass
SeriesClickEvent
The SeriesClickEvent class stores data for click events on the series of the chart.class
SeriesHideEvent
Fired when a series is hiddenclass
SeriesLegendItemClickEvent
The SeriesLegendItemClickEvent class stores information on click events on the charts's legend items that correspond to a chart series.class
SeriesMouseOutEvent
Fired when the mouse exits the neighborhood of a seriesclass
SeriesMouseOverEvent
Fired when the mouse moves within the neighborhood of a seriesclass
SeriesShowEvent
Fired when a series is shownclass
XAxesExtremesSetEvent
The XAxesExtremesSetEvent class stores data for set extremes events on the x axes of the chart.class
YAxesExtremesSetEvent
The YAxesExtremesSetEvent class stores data for set extremes events on the y axes of the chart. -
Uses of ComponentEvent in com.vaadin.flow.component.checkbox
Subclasses of ComponentEvent in com.vaadin.flow.component.checkbox Modifier and Type Class Description static class
GeneratedVaadinCheckbox.ChangeEvent<R extends GeneratedVaadinCheckbox<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinCheckbox.CheckedChangeEvent<R extends GeneratedVaadinCheckbox<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinCheckbox.IndeterminateChangeEvent<R extends GeneratedVaadinCheckbox<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinCheckboxGroup.InvalidChangeEvent<R extends GeneratedVaadinCheckboxGroup<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24. -
Uses of ComponentEvent in com.vaadin.flow.component.combobox
Subclasses of ComponentEvent in com.vaadin.flow.component.combobox Modifier and Type Class Description static class
ComboBoxBase.CustomValueSetEvent<TComponent extends ComboBoxBase<TComponent,?,?>>
Event that is dispatched from a combo box component, if the component allows setting custom values, and the user has entered a non-empty value that does not match any of the existing itemsstatic class
GeneratedVaadinComboBox.CustomValueSetEvent<TComponent extends ComboBoxBase<TComponent,?,?>>
Deprecated.UseComboBoxBase.CustomValueSetEvent
instead.static class
GeneratedVaadinComboBox.FilterChangeEvent<R extends ComboBoxBase<R,?,?>>
Deprecated.This class is not used in any API, and will be removed in a future major version.static class
GeneratedVaadinComboBox.InvalidChangeEvent<R extends ComboBoxBase<R,?,?>>
Deprecated.This class is not used in any API, and will be removed in a future major version.static class
GeneratedVaadinComboBox.OpenedChangeEvent<TComponent extends ComboBoxBase<TComponent,?,?>>
Deprecated.This class is not used in any API, and will be removed in a future major version.static class
GeneratedVaadinComboBox.SelectedItemChangeEvent<TComponent extends ComboBoxBase<TComponent,?,?>>
Deprecated.This class is not used in any API, and will be removed in a future major version. -
Uses of ComponentEvent in com.vaadin.flow.component.confirmdialog
Subclasses of ComponentEvent in com.vaadin.flow.component.confirmdialog Modifier and Type Class Description static class
ConfirmDialog.CancelEvent
`cancel` is sent when the user clicks Cancel button or presses Escape key.static class
ConfirmDialog.ConfirmEvent
`confirm` is sent when the user clicks Confirm buttonstatic class
ConfirmDialog.RejectEvent
`reject` is sent when the user clicks Reject button -
Uses of ComponentEvent in com.vaadin.flow.component.contextmenu
Subclasses of ComponentEvent in com.vaadin.flow.component.contextmenu Modifier and Type Class Description static class
ContextMenuBase.OpenedChangeEvent<C extends ContextMenuBase<C,?,?>>
static class
GeneratedVaadinContextMenu.OpenedChangeEvent<C extends ContextMenuBase<C,?,?>>
Deprecated.since v23.3, generated classes will be removed in v24. -
Uses of ComponentEvent in com.vaadin.flow.component.crud
Subclasses of ComponentEvent in com.vaadin.flow.component.crud Modifier and Type Class Description static class
Crud.CancelEvent<E>
Event fired when the user cancels the creation of a new item or modifications to an existing item.static class
Crud.DeleteEvent<E>
Event fired when the user tries to delete an existing item.static class
Crud.EditEvent<E>
Event fired when the user starts to edit an existing item.static class
Crud.NewEvent<E>
Event fired when the user starts to create a new item.static class
Crud.SaveEvent<E>
Event fired when the user tries to save a new item or modifications to an existing item.class
CrudI18nUpdatedEvent
Event fired to a crud grid when the internationalization object is changed. -
Uses of ComponentEvent in com.vaadin.flow.component.datepicker
Subclasses of ComponentEvent in com.vaadin.flow.component.datepicker Modifier and Type Class Description static class
DatePicker.InvalidChangeEvent<T extends GeneratedVaadinDatePicker<T,?>>
static class
DatePicker.OpenedChangeEvent<T extends GeneratedVaadinDatePicker<T,?>>
static class
GeneratedVaadinDatePicker.ChangeEvent<R extends GeneratedVaadinDatePicker<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinDatePicker.InvalidChangeEvent<R extends GeneratedVaadinDatePicker<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinDatePicker.OpenedChangeEvent<R extends GeneratedVaadinDatePicker<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24. -
Uses of ComponentEvent in com.vaadin.flow.component.details
Subclasses of ComponentEvent in com.vaadin.flow.component.details Modifier and Type Class Description static class
Details.OpenedChangeEvent
-
Uses of ComponentEvent in com.vaadin.flow.component.dialog
Subclasses of ComponentEvent in com.vaadin.flow.component.dialog Modifier and Type Class Description static class
Dialog.DialogCloseActionEvent
`vaadin-dialog-close-action` is sent when the user clicks outside the overlay or presses the escape key.static class
Dialog.DialogResizeEvent
`resize` event is sent when the user finishes resizing the overlay.static class
Dialog.OpenedChangeEvent<T extends GeneratedVaadinDialog<T>>
static class
GeneratedVaadinDialog.OpenedChangeEvent<R extends GeneratedVaadinDialog<R>>
Deprecated.since v23.3, generated classes will be removed in v24. -
Uses of ComponentEvent in com.vaadin.flow.component.dnd
Subclasses of ComponentEvent in com.vaadin.flow.component.dnd Modifier and Type Class Description class
DragEndEvent<T extends Component>
HTML5 drag end event, fired when the user stops dragging a drag source either by dropping on top of a valid drop target or by canceling to drop.class
DragStartEvent<T extends Component>
HTML5 drag start event, fired when the user starts dragging a drag source.class
DropEvent<T extends Component>
Server side drop event. -
Uses of ComponentEvent in com.vaadin.flow.component.grid
Subclasses of ComponentEvent in com.vaadin.flow.component.grid Modifier and Type Class Description class
CellFocusEvent<T>
Event fired when a cell in the Grid is focused.class
ColumnReorderEvent<T>
Event fired when the columns in the Grid are reordered.class
ColumnResizeEvent<T>
Event fired when a Grid column is resized by the user.class
ItemClickEvent<T>
Event fired when a Grid item is clicked.class
ItemDoubleClickEvent<T>
Event fired when a Grid item is double clicked. -
Uses of ComponentEvent in com.vaadin.flow.component.grid.contextmenu
Subclasses of ComponentEvent in com.vaadin.flow.component.grid.contextmenu Modifier and Type Class Description static class
GridContextMenu.GridContextMenuItemClickEvent<T>
Event that is fired when aGridMenuItem
is clicked inside aGridContextMenu
.static class
GridContextMenu.GridContextMenuOpenedEvent<T>
-
Uses of ComponentEvent in com.vaadin.flow.component.grid.dnd
Subclasses of ComponentEvent in com.vaadin.flow.component.grid.dnd Modifier and Type Class Description class
GridDragEndEvent<T>
Drag end event ofGrid
rows.class
GridDragStartEvent<T>
Drag start event ofGrid
rows.class
GridDropEvent<T>
Drop event that occurs on theGrid
or its rows. -
Uses of ComponentEvent in com.vaadin.flow.component.gridpro
Subclasses of ComponentEvent in com.vaadin.flow.component.gridpro Modifier and Type Class Description static class
GridPro.CellEditStartedEvent<E>
Event fired when the user starts to edit an existing item.static class
GridPro.ItemPropertyChangedEvent<E>
Event fired when the user has edited an existing item. -
Uses of ComponentEvent in com.vaadin.flow.component.html
Subclasses of ComponentEvent in com.vaadin.flow.component.html Modifier and Type Class Description static class
NativeDetails.ToggleEvent
Represents the DOM event "toggle". -
Uses of ComponentEvent in com.vaadin.flow.component.internal
Subclasses of ComponentEvent in com.vaadin.flow.component.internal Modifier and Type Class Description class
AbstractAttachDetachEvent
Internal helper forAttachEvent
andDetachEvent
.class
CompositionEvent
Abstract class for composition events.class
KeyboardEvent
Abstract class for keyboard events.Methods in com.vaadin.flow.component.internal with type parameters of type ComponentEvent Modifier and Type Method Description <T extends ComponentEvent<?>>
Optional<Constructor<T>>EventDataCache. getEventConstructor(Class<T> eventType)
Gets the cached DOM event constructor for the given event type.<T extends ComponentEvent<?>>
Constructor<T>EventDataCache. setEventConstructor(Class<T> eventType, Constructor<T> constructor)
Stores the given DOM event constructor for the given event type in the cache.Method parameters in com.vaadin.flow.component.internal with type arguments of type ComponentEvent Modifier and Type Method Description Optional<LinkedHashMap<String,Class<?>>>
EventDataCache. getDataExpressions(Class<? extends ComponentEvent<?>> eventType)
Gets the cached data expressions for the given event type.LinkedHashMap<String,Class<?>>
EventDataCache. setDataExpressions(Class<? extends ComponentEvent<?>> eventType, LinkedHashMap<String,Class<?>> expressions)
Stores the given data expressions for the given event type in the cache. -
Uses of ComponentEvent in com.vaadin.flow.component.login
Subclasses of ComponentEvent in com.vaadin.flow.component.login Modifier and Type Class Description static class
AbstractLogin.ForgotPasswordEvent
`forgot-password` is fired when the user clicks Forgot password buttonstatic class
AbstractLogin.LoginEvent
`login` is fired when the user either clicks Submit button or presses an Enter key. -
Uses of ComponentEvent in com.vaadin.flow.component.map.events
Subclasses of ComponentEvent in com.vaadin.flow.component.map.events Modifier and Type Class Description class
MapClickEvent
Representing OpenLayers' @code{click} eventclass
MapFeatureClickEvent
Provides data for click events on geographic featuresclass
MapViewMoveEndEvent
Fired when viewport movement has ended. -
Uses of ComponentEvent in com.vaadin.flow.component.messages
Subclasses of ComponentEvent in com.vaadin.flow.component.messages Modifier and Type Class Description static class
MessageInput.SubmitEvent
Thesubmit
event which is fired byMessageInput
component. -
Uses of ComponentEvent in com.vaadin.flow.component.notification
Subclasses of ComponentEvent in com.vaadin.flow.component.notification Modifier and Type Class Description static class
GeneratedVaadinNotification.OpenedChangeEvent<R extends GeneratedVaadinNotification<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
Notification.OpenedChangeEvent<T extends GeneratedVaadinNotification<T>>
-
Uses of ComponentEvent in com.vaadin.flow.component.radiobutton
Subclasses of ComponentEvent in com.vaadin.flow.component.radiobutton Modifier and Type Class Description static class
GeneratedVaadinRadioButton.CheckedChangeEvent<R extends GeneratedVaadinRadioButton<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinRadioGroup.InvalidChangeEvent<R extends GeneratedVaadinRadioGroup<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24. -
Uses of ComponentEvent in com.vaadin.flow.component.richtexteditor
Subclasses of ComponentEvent in com.vaadin.flow.component.richtexteditor Modifier and Type Class Description static class
GeneratedVaadinRichTextEditor.ChangeEvent<R extends GeneratedVaadinRichTextEditor<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24. -
Uses of ComponentEvent in com.vaadin.flow.component.select.generated
Subclasses of ComponentEvent in com.vaadin.flow.component.select.generated Modifier and Type Class Description static class
GeneratedVaadinSelect.InvalidChangeEvent<R extends GeneratedVaadinSelect<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinSelect.OpenedChangeEvent<R extends GeneratedVaadinSelect<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24. -
Uses of ComponentEvent in com.vaadin.flow.component.shared
Subclasses of ComponentEvent in com.vaadin.flow.component.shared Modifier and Type Class Description static class
HasClientValidation.ClientValidatedEvent
An event fired by the web component whenever it is validated on the client-side. -
Uses of ComponentEvent in com.vaadin.flow.component.splitlayout
Subclasses of ComponentEvent in com.vaadin.flow.component.splitlayout Modifier and Type Class Description static class
GeneratedVaadinSplitLayout.IronResizeEvent<R extends GeneratedVaadinSplitLayout<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinSplitLayout.SplitterDragendEvent<R extends GeneratedVaadinSplitLayout<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
SplitLayout.SplitterDragendEvent<T extends GeneratedVaadinSplitLayout<T>>
-
Uses of ComponentEvent in com.vaadin.flow.component.tabs
Subclasses of ComponentEvent in com.vaadin.flow.component.tabs Modifier and Type Class Description static class
Tabs.SelectedChangeEvent
An event to mark that the selected tab has changed.static class
TabSheet.SelectedChangeEvent
An event to mark that the selected tab has changed. -
Uses of ComponentEvent in com.vaadin.flow.component.textfield
Subclasses of ComponentEvent in com.vaadin.flow.component.textfield Modifier and Type Class Description static class
GeneratedVaadinTextArea.ChangeEvent<R extends GeneratedVaadinTextArea<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinTextArea.InvalidChangeEvent<R extends GeneratedVaadinTextArea<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinTextField.ChangeEvent<R extends GeneratedVaadinTextField<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinTextField.InvalidChangeEvent<R extends GeneratedVaadinTextField<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24. -
Uses of ComponentEvent in com.vaadin.flow.component.timepicker
Subclasses of ComponentEvent in com.vaadin.flow.component.timepicker Modifier and Type Class Description static class
GeneratedVaadinTimePicker.InvalidChangeEvent<R extends GeneratedVaadinTimePicker<R,?>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
TimePicker.InvalidChangeEvent<T extends GeneratedVaadinTimePicker<T,?>>
-
Uses of ComponentEvent in com.vaadin.flow.component.treegrid
Subclasses of ComponentEvent in com.vaadin.flow.component.treegrid Modifier and Type Class Description class
CollapseEvent<T,C extends Component>
class
ExpandEvent<T,C extends Component>
-
Uses of ComponentEvent in com.vaadin.flow.component.upload
Subclasses of ComponentEvent in com.vaadin.flow.component.upload Modifier and Type Class Description class
AllFinishedEvent
AllFinishedEvent is sent when the upload has processed all the files in its upload queue, regardless of whether all the receptions were successful or not.class
FailedEvent
FailedEvent event is sent when the upload is received, but the reception is interrupted for some reason.class
FileRejectedEvent
Sent when the file selected for upload doesn't meet the constraints specified onUpload
class
FinishedEvent
FinishedEvent is sent when the upload receives a file, regardless of whether the reception was successful or failed.static class
GeneratedVaadinUpload.FileRejectEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUpload.FilesChangeEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUpload.MaxFilesReachedChangeEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUpload.UploadAbortEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUpload.UploadBeforeEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUpload.UploadErrorEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUpload.UploadProgressEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUpload.UploadRequestEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUpload.UploadResponseEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUpload.UploadRetryEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUpload.UploadStartEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUpload.UploadSuccessEvent<R extends GeneratedVaadinUpload<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUploadFile.FileAbortEvent<R extends GeneratedVaadinUploadFile<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUploadFile.FileRemoveEvent<R extends GeneratedVaadinUploadFile<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUploadFile.FileRetryEvent<R extends GeneratedVaadinUploadFile<R>>
Deprecated.since v23.3, generated classes will be removed in v24.static class
GeneratedVaadinUploadFile.FileStartEvent<R extends GeneratedVaadinUploadFile<R>>
Deprecated.since v23.3, generated classes will be removed in v24.class
NoInputStreamEvent
FailedEvent that indicates that an input stream could not be obtained.class
NoOutputStreamEvent
FailedEvent that indicates that an output stream could not be obtained.class
ProgressUpdateEvent
ProgressUpdateEvent is sent to track progress of upload.class
StartedEvent
StartedEvent event is sent when the upload is started to received.class
SucceededEvent
SucceededEvent event is sent when the upload is received successfully. -
Uses of ComponentEvent in com.vaadin.flow.component.webcomponent
Subclasses of ComponentEvent in com.vaadin.flow.component.webcomponent Modifier and Type Class Description static class
WebComponentUI.WebComponentConnectEvent
Event used for sending the activation event for an exported web component from the client to the server. -
Uses of ComponentEvent in com.vaadin.flow.data.event
Subclasses of ComponentEvent in com.vaadin.flow.data.event Modifier and Type Class Description class
SortEvent<T extends Component,S extends SortOrder<?>>
Event describing a change in sorting of aDataProvider
. -
Uses of ComponentEvent in com.vaadin.flow.data.provider
Subclasses of ComponentEvent in com.vaadin.flow.data.provider Modifier and Type Class Description class
IdentifierProviderChangeEvent<T,C extends Component>
Event notifying the component that its identifier provider has been changed through a data view.class
ItemCountChangeEvent<T extends Component>
Event describing the item count change for a component. -
Uses of ComponentEvent in com.vaadin.flow.data.selection
Subclasses of ComponentEvent in com.vaadin.flow.data.selection Modifier and Type Class Description class
MultiSelectionEvent<C extends Component,T>
Fired when the selection changes in a listing component that supports multiple item selection.class
SingleSelectionEvent<C extends Component,T>
Fired when the selection changes in a listing component.
-