Modifier and Type | Interface and Description |
---|---|
interface |
ComponentEventListener<T extends ComponentEvent<?>>
Generic listener for component events.
|
Modifier and Type | Class and Description |
---|---|
static class |
AbstractField.ComponentValueChangeEvent<C extends Component,V>
Value change event fired by components.
|
class |
AttachEvent
Event fired after a
Component 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 a
Component 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.
|
Modifier and Type | Method and Description |
---|---|
<T extends ComponentEvent<?>> |
ComponentEventBus.addListener(Class<T> eventType,
ComponentEventListener<T> listener)
Adds a listener for the given event type.
|
protected <T extends ComponentEvent<?>> |
Component.addListener(Class<T> eventType,
ComponentEventListener<T> listener)
Adds a listener for an event of the given type.
|
<T extends ComponentEvent<?>> |
ComponentEventBus.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<?>> |
ComponentUtil.addListener(Component component,
Class<T> eventType,
ComponentEventListener<T> listener)
Adds a listener for an event of the given type to the
component . |
static <T extends ComponentEvent<?>> |
ComponentUtil.addListener(Component component,
Class<T> eventType,
ComponentEventListener<T> listener,
Consumer<DomListenerRegistration> domListenerConsumer)
Adds a listener for an event of the given type to the
component ,
and customizes the corresponding DOM event listener with the given
consumer. |
static <T extends ComponentEvent<?>> |
ComponentEventBusUtil.getEventConstructor(Class<T> eventType)
Gets the constructor to use for firing a component event, of the given
type, based on a DOM event.
|
Modifier and Type | Method and Description |
---|---|
void |
ComponentEventBus.fireEvent(ComponentEvent event)
Dispatches the event to all listeners registered for the event type.
|
protected void |
Component.fireEvent(ComponentEvent<?> componentEvent)
Dispatches the event to all listeners registered for the event type.
|
static <T extends Component> |
ComponentUtil.fireEvent(T component,
ComponentEvent<? extends T> componentEvent)
Dispatches the event to all listeners registered for the event type.
|
Modifier and Type | Method and Description |
---|---|
static LinkedHashMap<String,Class<?>> |
ComponentEventBusUtil.getEventDataExpressions(Class<? extends ComponentEvent<?>> eventType)
Gets a map of event data expression (for
DomListenerRegistration.addEventData(String)
) to Java type, with the same order as the parameters for the event
constructor (as returned by ComponentEventBusUtil.getEventConstructor(Class) ). |
boolean |
ComponentEventBus.hasListener(Class<? extends ComponentEvent> eventType)
Checks if there is at least one listener registered for 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.
|
Modifier and Type | Class and Description |
---|---|
static class |
Accordion.OpenedChangeEvent
An event fired when an Accordion is opened or closed.
|
Modifier and Type | Class and 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 menu
|
class |
ChartBeforePrintEvent
Fired before a chart is printed using the print menu
|
class |
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 series
|
class |
ChartDrillupEvent
ChartDrillupEvent triggered when the 'Back to previous series' button is
clicked
|
class |
ChartLoadEvent
Fired after a chart is loaded
|
class |
ChartRedrawEvent
Fired after a chart is redrawn
|
class |
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
points
|
class |
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 point
|
class |
PointMouseOverEvent
Fired when the mouse pointer moves within the neighborhood of a point
|
class |
PointRemoveEvent
The PointRemoveEvent class stores data for remove events on the points of the
chart
|
class |
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
chart
|
class |
SeriesAfterAnimateEvent
Fired after a chart series is animated
|
class |
SeriesCheckboxClickEvent
SeriesCheckboxClickEvent triggered when a checkbox in a legend is clicked
|
class |
SeriesClickEvent
The SeriesClickEvent class stores data for click events on the series of the
chart.
|
class |
SeriesHideEvent
Fired when a series is hidden
|
class |
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 series
|
class |
SeriesMouseOverEvent
Fired when the mouse moves within the neighborhood of a series
|
class |
SeriesShowEvent
Fired when a series is shown
|
class |
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.
|
Modifier and Type | Class and Description |
---|---|
static class |
GeneratedVaadinCheckbox.ChangeEvent<R extends GeneratedVaadinCheckbox<R,?>> |
static class |
GeneratedVaadinCheckbox.CheckedChangeEvent<R extends GeneratedVaadinCheckbox<R,?>> |
static class |
GeneratedVaadinCheckbox.IndeterminateChangeEvent<R extends GeneratedVaadinCheckbox<R,?>> |
static class |
GeneratedVaadinCheckboxGroup.InvalidChangeEvent<R extends GeneratedVaadinCheckboxGroup<R,?>> |
Modifier and Type | Class and Description |
---|---|
static class |
GeneratedVaadinComboBox.CustomValueSetEvent<R extends GeneratedVaadinComboBox<R,?>> |
static class |
GeneratedVaadinComboBox.FilterChangeEvent<R extends GeneratedVaadinComboBox<R,?>> |
static class |
GeneratedVaadinComboBox.InvalidChangeEvent<R extends GeneratedVaadinComboBox<R,?>> |
static class |
GeneratedVaadinComboBox.OpenedChangeEvent<R extends GeneratedVaadinComboBox<R,?>> |
static class |
GeneratedVaadinComboBox.SelectedItemChangeEvent<R extends GeneratedVaadinComboBox<R,?>> |
Modifier and Type | Class and 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 button
|
static class |
ConfirmDialog.RejectEvent
`reject` is sent when the user clicks Reject button
|
Modifier and Type | Class and Description |
---|---|
static class |
GeneratedVaadinContextMenu.OpenedChangeEvent<R extends GeneratedVaadinContextMenu<R>> |
Modifier and Type | Class and 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.
|
Modifier and Type | Class and Description |
---|---|
static class |
GeneratedVaadinDatePicker.ChangeEvent<R extends GeneratedVaadinDatePicker<R,?>> |
static class |
GeneratedVaadinDatePicker.InvalidChangeEvent<R extends GeneratedVaadinDatePicker<R,?>> |
static class |
GeneratedVaadinDatePicker.OpenedChangeEvent<R extends GeneratedVaadinDatePicker<R,?>> |
Modifier and Type | Class and Description |
---|---|
static class |
Details.OpenedChangeEvent |
Modifier and Type | Class and 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 |
GeneratedVaadinDialog.OpenedChangeEvent<R extends GeneratedVaadinDialog<R>> |
Modifier and Type | Class and 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.
|
Modifier and Type | Class and Description |
---|---|
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.
|
Modifier and Type | Class and Description |
---|---|
static class |
GridContextMenu.GridContextMenuItemClickEvent<T>
Event that is fired when a
GridMenuItem is clicked inside a
GridContextMenu . |
static class |
GridContextMenu.GridContextMenuOpenedEvent<T> |
Modifier and Type | Class and Description |
---|---|
class |
GridDragEndEvent<T>
Drag end event of
Grid rows. |
class |
GridDragStartEvent<T>
Drag start event of
Grid rows. |
class |
GridDropEvent<T>
Drop event that occurs on the
Grid or its rows. |
Modifier and Type | Class and 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.
|
Modifier and Type | Class and Description |
---|---|
static class |
NativeDetails.ToggleEvent
Represents the DOM event "toggle".
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractAttachDetachEvent
Internal helper for
AttachEvent and DetachEvent . |
class |
CompositionEvent
Abstract class for composition events.
|
class |
KeyboardEvent
Abstract class for keyboard events.
|
Modifier and Type | Method and Description |
---|---|
<T extends ComponentEvent<?>> |
EventDataCache.getEventConstructor(Class<T> eventType)
Gets the cached DOM event constructor for the given event type.
|
<T extends ComponentEvent<?>> |
EventDataCache.setEventConstructor(Class<T> eventType,
Constructor<T> constructor)
Stores the given DOM event constructor for the given event type in the
cache.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Class and Description |
---|---|
static class |
AbstractLogin.ForgotPasswordEvent
`forgot-password` is fired when the user clicks Forgot password button
|
static class |
AbstractLogin.LoginEvent
`login` is fired when the user either clicks Submit button or presses an
Enter key.
|
Modifier and Type | Class and Description |
---|---|
static class |
MessageInput.SubmitEvent
The
submit event which is fired by MessageInput
component. |
Modifier and Type | Class and Description |
---|---|
static class |
GeneratedVaadinNotification.OpenedChangeEvent<R extends GeneratedVaadinNotification<R>> |
Modifier and Type | Class and Description |
---|---|
static class |
GeneratedVaadinRadioButton.CheckedChangeEvent<R extends GeneratedVaadinRadioButton<R>> |
static class |
GeneratedVaadinRadioGroup.InvalidChangeEvent<R extends GeneratedVaadinRadioGroup<R,?>> |
Modifier and Type | Class and Description |
---|---|
static class |
GeneratedVaadinRichTextEditor.ChangeEvent<R extends GeneratedVaadinRichTextEditor<R,?>> |
Modifier and Type | Class and Description |
---|---|
static class |
GeneratedVaadinSelect.InvalidChangeEvent<R extends GeneratedVaadinSelect<R,?>> |
static class |
GeneratedVaadinSelect.OpenedChangeEvent<R extends GeneratedVaadinSelect<R,?>> |
Modifier and Type | Class and Description |
---|---|
static class |
GeneratedVaadinSplitLayout.IronResizeEvent<R extends GeneratedVaadinSplitLayout<R>> |
static class |
GeneratedVaadinSplitLayout.SplitterDragendEvent<R extends GeneratedVaadinSplitLayout<R>> |
Modifier and Type | Class and Description |
---|---|
static class |
Tabs.SelectedChangeEvent
An event to mark that the selected tab has changed.
|
Modifier and Type | Class and Description |
---|---|
static class |
GeneratedVaadinTextArea.ChangeEvent<R extends GeneratedVaadinTextArea<R,?>> |
static class |
GeneratedVaadinTextArea.InvalidChangeEvent<R extends GeneratedVaadinTextArea<R,?>> |
static class |
GeneratedVaadinTextField.ChangeEvent<R extends GeneratedVaadinTextField<R,?>> |
static class |
GeneratedVaadinTextField.InvalidChangeEvent<R extends GeneratedVaadinTextField<R,?>> |
Modifier and Type | Class and Description |
---|---|
static class |
GeneratedVaadinTimePicker.InvalidChangeEvent<R extends GeneratedVaadinTimePicker<R,?>> |
Modifier and Type | Class and Description |
---|---|
class |
CollapseEvent<T,C extends Component> |
class |
ExpandEvent<T,C extends Component> |
Modifier and Type | Class and 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
on
Upload |
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>> |
static class |
GeneratedVaadinUpload.FilesChangeEvent<R extends GeneratedVaadinUpload<R>> |
static class |
GeneratedVaadinUpload.MaxFilesReachedChangeEvent<R extends GeneratedVaadinUpload<R>> |
static class |
GeneratedVaadinUpload.UploadAbortEvent<R extends GeneratedVaadinUpload<R>> |
static class |
GeneratedVaadinUpload.UploadBeforeEvent<R extends GeneratedVaadinUpload<R>> |
static class |
GeneratedVaadinUpload.UploadErrorEvent<R extends GeneratedVaadinUpload<R>> |
static class |
GeneratedVaadinUpload.UploadProgressEvent<R extends GeneratedVaadinUpload<R>> |
static class |
GeneratedVaadinUpload.UploadRequestEvent<R extends GeneratedVaadinUpload<R>> |
static class |
GeneratedVaadinUpload.UploadResponseEvent<R extends GeneratedVaadinUpload<R>> |
static class |
GeneratedVaadinUpload.UploadRetryEvent<R extends GeneratedVaadinUpload<R>> |
static class |
GeneratedVaadinUpload.UploadStartEvent<R extends GeneratedVaadinUpload<R>> |
static class |
GeneratedVaadinUpload.UploadSuccessEvent<R extends GeneratedVaadinUpload<R>> |
static class |
GeneratedVaadinUploadFile.FileAbortEvent<R extends GeneratedVaadinUploadFile<R>> |
static class |
GeneratedVaadinUploadFile.FileRemoveEvent<R extends GeneratedVaadinUploadFile<R>> |
static class |
GeneratedVaadinUploadFile.FileRetryEvent<R extends GeneratedVaadinUploadFile<R>> |
static class |
GeneratedVaadinUploadFile.FileStartEvent<R extends GeneratedVaadinUploadFile<R>> |
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.
|
Modifier and Type | Class and Description |
---|---|
static class |
WebComponentUI.WebComponentConnectEvent
Event used for sending the activation event for an exported web component
from the client to the server.
|
Modifier and Type | Class and Description |
---|---|
class |
SortEvent<T extends Component,S extends SortOrder<?>>
Event describing a change in sorting of a
DataProvider . |
Modifier and Type | Class and Description |
---|---|
class |
ItemCountChangeEvent<T extends Component>
Event describing the item count change for a component.
|
Modifier and Type | Class and 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.
|
Copyright © 2021. All rights reserved.