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 interfaceComponentEventListener<T extends ComponentEvent<?>>Generic listener for component events.Subclasses of ComponentEvent in com.vaadin.flow.component Modifier and Type Class Description static classAbstractField.ComponentValueChangeEvent<C extends Component,V>Value change event fired by components.classAttachEventEvent fired after aComponentis attached to the UI.static classBlurNotifier.BlurEvent<C extends Component>Represents the DOM event "blur".classClickEvent<C extends Component>Event fired when a component is clicked.classCompositionEndEventThe event when a composition is ended.classCompositionStartEventThe event when a composition is started.classCompositionUpdateEventThe event when a composition is updated.classDetachEventEvent fired before aComponentis detached from the UI.static classFocusNotifier.FocusEvent<C extends Component>Represents the DOM event "focus".classInputEventEvent fired when the component has received any type of input (e.g.classKeyDownEventThe event when a key is pressed.classKeyPressEventThe event when a key is pressed.classKeyUpEventThe event when a key is released.classPollEventAn 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 voidComponent. fireEvent(ComponentEvent<?> componentEvent)Dispatches the event to all listeners registered for the event type.voidComponentEventBus. 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 booleanComponent. hasListener(Class<? extends ComponentEvent> eventType)Checks if there is at least one listener registered for the given event type for this component.booleanComponentEventBus. 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 classAccordion.OpenedChangeEventAn 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 classChartAddSeriesEventThe ChartAddSeriesEvent class stores data about new series added to an existing chart.classChartAfterPrintEventFired after a chart is printed using the print menuclassChartBeforePrintEventFired before a chart is printed using the print menuclassChartClickEventThe ChartClickEvent class stores information on click events anywhere on the area of the chart.classChartDrillupAllEventChartDrillupEvent triggered after all the series has been drilled up if chart has multiple drilldown seriesclassChartDrillupEventChartDrillupEvent triggered when the 'Back to previous series' button is clickedclassChartLoadEventFired after a chart is loadedclassChartRedrawEventFired after a chart is redrawnclassChartSelectionEventThe ChartSelectionEvent class stores information on selection events on the chart's area.classDrilldownEventThe DrilldownEvent class stores information on click events in drilldown pointsclassPointClickEventThe PointClickEvent class stores data for click events on the points of the chart.classPointLegendItemClickEventThe PointLegendItemClickEvent class stores information on click events on the charts's legend items that correspond to a chart point.classPointMouseOutEventFired when the mouse exits the neighborhood of a pointclassPointMouseOverEventFired when the mouse pointer moves within the neighborhood of a pointclassPointRemoveEventThe PointRemoveEvent class stores data for remove events on the points of the chartclassPointSelectEventThe PointSelectEvent class stores data for select events on the points of the chart.classPointUnselectEventThe PointUnselectEvent class stores data for unselect events on the points of the chart.classPointUpdateEventThe PointUpdateEvent class stores data for update events on the points of the chartclassSeriesAfterAnimateEventFired after a chart series is animatedclassSeriesCheckboxClickEventSeriesCheckboxClickEvent triggered when a checkbox in a legend is clickedclassSeriesClickEventThe SeriesClickEvent class stores data for click events on the series of the chart.classSeriesHideEventFired when a series is hiddenclassSeriesLegendItemClickEventThe SeriesLegendItemClickEvent class stores information on click events on the charts's legend items that correspond to a chart series.classSeriesMouseOutEventFired when the mouse exits the neighborhood of a seriesclassSeriesMouseOverEventFired when the mouse moves within the neighborhood of a seriesclassSeriesShowEventFired when a series is shownclassXAxesExtremesSetEventThe XAxesExtremesSetEvent class stores data for set extremes events on the x axes of the chart.classYAxesExtremesSetEventThe 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 classGeneratedVaadinCheckbox.ChangeEvent<R extends GeneratedVaadinCheckbox<R,?>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinCheckbox.CheckedChangeEvent<R extends GeneratedVaadinCheckbox<R,?>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinCheckbox.IndeterminateChangeEvent<R extends GeneratedVaadinCheckbox<R,?>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinCheckboxGroup.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 classComboBoxBase.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 classGeneratedVaadinComboBox.CustomValueSetEvent<TComponent extends ComboBoxBase<TComponent,?,?>>Deprecated.UseComboBoxBase.CustomValueSetEventinstead.static classGeneratedVaadinComboBox.FilterChangeEvent<R extends ComboBoxBase<R,?,?>>Deprecated.This class is not used in any API, and will be removed in a future major version.static classGeneratedVaadinComboBox.InvalidChangeEvent<R extends ComboBoxBase<R,?,?>>Deprecated.This class is not used in any API, and will be removed in a future major version.static classGeneratedVaadinComboBox.OpenedChangeEvent<TComponent extends ComboBoxBase<TComponent,?,?>>Deprecated.This class is not used in any API, and will be removed in a future major version.static classGeneratedVaadinComboBox.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 classConfirmDialog.CancelEvent`cancel` is sent when the user clicks Cancel button or presses Escape key.static classConfirmDialog.ConfirmEvent`confirm` is sent when the user clicks Confirm buttonstatic classConfirmDialog.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 classContextMenuBase.OpenedChangeEvent<C extends ContextMenuBase<C,?,?>>static classGeneratedVaadinContextMenu.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 classCrud.CancelEvent<E>Event fired when the user cancels the creation of a new item or modifications to an existing item.static classCrud.DeleteEvent<E>Event fired when the user tries to delete an existing item.static classCrud.EditEvent<E>Event fired when the user starts to edit an existing item.static classCrud.NewEvent<E>Event fired when the user starts to create a new item.static classCrud.SaveEvent<E>Event fired when the user tries to save a new item or modifications to an existing item.classCrudI18nUpdatedEventEvent 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 classDatePicker.InvalidChangeEvent<T extends GeneratedVaadinDatePicker<T,?>>static classDatePicker.OpenedChangeEvent<T extends GeneratedVaadinDatePicker<T,?>>static classGeneratedVaadinDatePicker.ChangeEvent<R extends GeneratedVaadinDatePicker<R,?>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinDatePicker.InvalidChangeEvent<R extends GeneratedVaadinDatePicker<R,?>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinDatePicker.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 classDetails.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 classDialog.DialogCloseActionEvent`vaadin-dialog-close-action` is sent when the user clicks outside the overlay or presses the escape key.static classDialog.DialogResizeEvent`resize` event is sent when the user finishes resizing the overlay.static classDialog.OpenedChangeEvent<T extends GeneratedVaadinDialog<T>>static classGeneratedVaadinDialog.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 classDragEndEvent<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.classDragStartEvent<T extends Component>HTML5 drag start event, fired when the user starts dragging a drag source.classDropEvent<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 classCellFocusEvent<T>Event fired when a cell in the Grid is focused.classColumnReorderEvent<T>Event fired when the columns in the Grid are reordered.classColumnResizeEvent<T>Event fired when a Grid column is resized by the user.classItemClickEvent<T>Event fired when a Grid item is clicked.classItemDoubleClickEvent<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 classGridContextMenu.GridContextMenuItemClickEvent<T>Event that is fired when aGridMenuItemis clicked inside aGridContextMenu.static classGridContextMenu.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 classGridDragEndEvent<T>Drag end event ofGridrows.classGridDragStartEvent<T>Drag start event ofGridrows.classGridDropEvent<T>Drop event that occurs on theGridor 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 classGridPro.CellEditStartedEvent<E>Event fired when the user starts to edit an existing item.static classGridPro.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 classNativeDetails.ToggleEventRepresents 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 classAbstractAttachDetachEventInternal helper forAttachEventandDetachEvent.classCompositionEventAbstract class for composition events.classKeyboardEventAbstract 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 classAbstractLogin.ForgotPasswordEvent`forgot-password` is fired when the user clicks Forgot password buttonstatic classAbstractLogin.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 classMapClickEventRepresenting OpenLayers' @code{click} eventclassMapFeatureClickEventProvides data for click events on geographic featuresclassMapViewMoveEndEventFired 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 classMessageInput.SubmitEventThesubmitevent which is fired byMessageInputcomponent. -
Uses of ComponentEvent in com.vaadin.flow.component.notification
Subclasses of ComponentEvent in com.vaadin.flow.component.notification Modifier and Type Class Description static classGeneratedVaadinNotification.OpenedChangeEvent<R extends GeneratedVaadinNotification<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classNotification.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 classGeneratedVaadinRadioButton.CheckedChangeEvent<R extends GeneratedVaadinRadioButton<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinRadioGroup.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 classGeneratedVaadinRichTextEditor.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 classGeneratedVaadinSelect.InvalidChangeEvent<R extends GeneratedVaadinSelect<R,?>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinSelect.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 classHasClientValidation.ClientValidatedEventAn 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 classGeneratedVaadinSplitLayout.IronResizeEvent<R extends GeneratedVaadinSplitLayout<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinSplitLayout.SplitterDragendEvent<R extends GeneratedVaadinSplitLayout<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classSplitLayout.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 classTabs.SelectedChangeEventAn event to mark that the selected tab has changed.static classTabSheet.SelectedChangeEventAn 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 classGeneratedVaadinTextArea.ChangeEvent<R extends GeneratedVaadinTextArea<R,?>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinTextArea.InvalidChangeEvent<R extends GeneratedVaadinTextArea<R,?>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinTextField.ChangeEvent<R extends GeneratedVaadinTextField<R,?>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinTextField.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 classGeneratedVaadinTimePicker.InvalidChangeEvent<R extends GeneratedVaadinTimePicker<R,?>>Deprecated.since v23.3, generated classes will be removed in v24.static classTimePicker.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 classCollapseEvent<T,C extends Component>classExpandEvent<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 classAllFinishedEventAllFinishedEvent is sent when the upload has processed all the files in its upload queue, regardless of whether all the receptions were successful or not.classFailedEventFailedEvent event is sent when the upload is received, but the reception is interrupted for some reason.classFileRejectedEventSent when the file selected for upload doesn't meet the constraints specified onUploadclassFinishedEventFinishedEvent is sent when the upload receives a file, regardless of whether the reception was successful or failed.static classGeneratedVaadinUpload.FileRejectEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUpload.FilesChangeEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUpload.MaxFilesReachedChangeEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUpload.UploadAbortEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUpload.UploadBeforeEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUpload.UploadErrorEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUpload.UploadProgressEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUpload.UploadRequestEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUpload.UploadResponseEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUpload.UploadRetryEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUpload.UploadStartEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUpload.UploadSuccessEvent<R extends GeneratedVaadinUpload<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUploadFile.FileAbortEvent<R extends GeneratedVaadinUploadFile<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUploadFile.FileRemoveEvent<R extends GeneratedVaadinUploadFile<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUploadFile.FileRetryEvent<R extends GeneratedVaadinUploadFile<R>>Deprecated.since v23.3, generated classes will be removed in v24.static classGeneratedVaadinUploadFile.FileStartEvent<R extends GeneratedVaadinUploadFile<R>>Deprecated.since v23.3, generated classes will be removed in v24.classNoInputStreamEventFailedEvent that indicates that an input stream could not be obtained.classNoOutputStreamEventFailedEvent that indicates that an output stream could not be obtained.classProgressUpdateEventProgressUpdateEvent is sent to track progress of upload.classStartedEventStartedEvent event is sent when the upload is started to received.classSucceededEventSucceededEvent 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 classWebComponentUI.WebComponentConnectEventEvent 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 classSortEvent<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 classIdentifierProviderChangeEvent<T,C extends Component>Event notifying the component that its identifier provider has been changed through a data view.classItemCountChangeEvent<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 classMultiSelectionEvent<C extends Component,T>Fired when the selection changes in a listing component that supports multiple item selection.classSingleSelectionEvent<C extends Component,T>Fired when the selection changes in a listing component.
-