| Modifier and Type | Class and Description |
|---|---|
class |
KeyEventListener<E extends KeyboardEvent>
A conditional event listener for
KeyboardEvents. |
| Modifier and Type | Method and Description |
|---|---|
default Registration |
AttachNotifier.addAttachListener(ComponentEventListener<AttachEvent> listener)
Adds a attach listener to this component.
|
default Registration |
BlurNotifier.addBlurListener(ComponentEventListener<BlurNotifier.BlurEvent<T>> listener)
Add a listener to blur DOM events.
|
default Registration |
ClickNotifier.addClickListener(ComponentEventListener<ClickEvent<T>> listener)
Adds a click listener to this component.
|
default Registration |
CompositionNotifier.addCompositionEndListener(ComponentEventListener<CompositionEndEvent> listener)
Adds a
compositionend listener to this component. |
default Registration |
CompositionNotifier.addCompositionStartListener(ComponentEventListener<CompositionStartEvent> listener)
Adds a
compositionstart listener to this component. |
default Registration |
CompositionNotifier.addCompositionUpdateListener(ComponentEventListener<CompositionUpdateEvent> listener)
Adds a
compositionupdate listener to this component. |
default Registration |
DetachNotifier.addDetachListener(ComponentEventListener<DetachEvent> listener)
Adds a detach listener to this component.
|
default Registration |
FocusNotifier.addFocusListener(ComponentEventListener<FocusNotifier.FocusEvent<T>> listener)
Add a listener to focus DOM events.
|
default Registration |
InputNotifier.addInputListener(ComponentEventListener<InputEvent> listener)
Adds an input listener to this component.
|
default Registration |
KeyNotifier.addKeyDownListener(ComponentEventListener<KeyDownEvent> listener)
Adds a
keydown listener to this component. |
default Registration |
KeyNotifier.addKeyDownListener(Key key,
ComponentEventListener<KeyDownEvent> listener,
KeyModifier... modifiers)
Adds a
keydown listener to this component, which will trigger
only if the keys involved in the event match the key and
modifiers parameters. |
default Registration |
KeyNotifier.addKeyPressListener(ComponentEventListener<KeyPressEvent> listener)
Adds a
keypress listener to this component. |
default Registration |
KeyNotifier.addKeyPressListener(Key key,
ComponentEventListener<KeyPressEvent> listener,
KeyModifier... modifiers)
Adds a
keypress listener to this component, which will trigger
only if the keys involved in the event match the key and
modifiers parameters. |
default Registration |
KeyNotifier.addKeyUpListener(ComponentEventListener<KeyUpEvent> listener)
Adds a
keyup listener to this component. |
default Registration |
KeyNotifier.addKeyUpListener(Key key,
ComponentEventListener<KeyUpEvent> listener,
KeyModifier... modifiers)
Adds a
keyup listener to this component, which will trigger only
if the keys involved in the event match the key and
modifiers parameters. |
<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. |
default Registration |
PollNotifier.addPollListener(ComponentEventListener<PollEvent> listener)
Add a poll listener.
|
| Constructor and Description |
|---|
KeyEventListener(ComponentEventListener<E> listener,
Key key,
KeyModifier... modifiers)
Create a listener which will delegate to
listener only if
key is the target key. |
| Modifier and Type | Method and Description |
|---|---|
AppLayoutMenuItem |
AppLayoutMenu.addMenuItem(Component icon,
ComponentEventListener<MenuItemClickEvent> listener)
Constructs a new object with the given icon and click listener.
|
AppLayoutMenuItem |
AppLayoutMenu.addMenuItem(Component icon,
String title,
ComponentEventListener<MenuItemClickEvent> listener)
Constructs a new object with the given icon, title and click listener.
|
AppLayoutMenuItem |
AppLayoutMenu.addMenuItem(String title,
ComponentEventListener<MenuItemClickEvent> listener)
Constructs a new object with the given title and click listener.
|
Registration |
AppLayoutMenuItem.addMenuItemClickListener(ComponentEventListener<MenuItemClickEvent> listener) |
| Constructor and Description |
|---|
AppLayoutMenuItem(Component icon,
ComponentEventListener<MenuItemClickEvent> listener)
Constructs a new object with the given icon and click listener.
|
AppLayoutMenuItem(Component icon,
String title,
ComponentEventListener<MenuItemClickEvent> listener)
Constructs a new object with the given icon, title and click listener.
|
AppLayoutMenuItem(String title,
ComponentEventListener<MenuItemClickEvent> listener)
Constructs a new object with the given title and click listener.
|
| Constructor and Description |
|---|
Button(Component icon,
ComponentEventListener<ClickEvent<Button>> clickListener)
Creates a button with an icon and a listener for click events.
|
Button(String text,
Component icon,
ComponentEventListener<ClickEvent<Button>> clickListener)
Create a button with a text, an icon and a listener for click events.
|
Button(String text,
ComponentEventListener<ClickEvent<Button>> clickListener)
Creates a button with a text and a listener for click events.
|
| Modifier and Type | Method and Description |
|---|---|
Registration |
Chart.addChartAddSeriesListener(ComponentEventListener<ChartAddSeriesEvent> listener)
Adds a chart add series listener, which will be notified after a
new series is added to the chart
|
Registration |
Chart.addChartAfterPrintListener(ComponentEventListener<ChartAfterPrintEvent> listener)
Adds a chart after print listener, which will be notified after the chart
is printed using the print menu
|
Registration |
Chart.addChartBeforePrintListener(ComponentEventListener<ChartBeforePrintEvent> listener)
Adds a chart before print listener, which will be notified before the chart
is printed using the print menu
|
Registration |
Chart.addChartClickListener(ComponentEventListener<ChartClickEvent> listener)
Adds chart click listener, which will be notified of clicks on the chart
area
|
Registration |
Chart.addChartDrillupAllListener(ComponentEventListener<ChartDrillupAllEvent> listener)
Adds chart drillupall listener, which will be notified after all the series
have been drilled up in a chart with multiple drilldown series.
|
Registration |
Chart.addChartDrillupListener(ComponentEventListener<ChartDrillupEvent> listener)
Adds chart drillup listener, which will be notified of clicks on the
'Back to previous series' button.
|
Registration |
Chart.addChartLoadListener(ComponentEventListener<ChartLoadEvent> listener)
Adds a chart load listener, which will be notified after a chart
is loaded
|
Registration |
Chart.addChartRedrawListener(ComponentEventListener<ChartRedrawEvent> listener)
Adds a chart redraw listener, which will be notified after a chart
is redrawn
|
Registration |
Chart.addChartSelectionListener(ComponentEventListener<ChartSelectionEvent> listener)
Adds a chart selection listener
|
Registration |
Chart.addCheckBoxClickListener(ComponentEventListener<SeriesCheckboxClickEvent> listener)
Adds checkbox click listener, which will be notified when user has
clicked a checkbox in the legend
|
Registration |
Chart.addDrilldownListener(ComponentEventListener<DrilldownEvent> listener)
Sets the Chart drilldown handler that's responsible for returning the
drilldown series for each drilldown callback when doing async drilldown
|
Registration |
Chart.addPointClickListener(ComponentEventListener<PointClickEvent> listener)
Adds a point click listener, which will be notified of clicks on the
points, bars or columns in the chart
|
Registration |
Chart.addPointLegendItemClickListener(ComponentEventListener<PointLegendItemClickEvent> listener)
Adds a point legend item click listener, which will be notified of clicks
on the legend's items corresponding to a Point
|
Registration |
Chart.addPointMouseOutListener(ComponentEventListener<PointMouseOutEvent> listener)
Adds a point mouse out listener, which will be notified when the mouse
exits the neighborhood of a data point
|
Registration |
Chart.addPointMouseOverListener(ComponentEventListener<PointMouseOverEvent> listener)
Adds a point mouse over listener, which will be notified when the mouse
enters the neighborhood of a data point
|
Registration |
Chart.addPointRemoveListener(ComponentEventListener<PointRemoveEvent> listener)
Adds a point remove listener, which will be notified when a data point
is removed.
|
Registration |
Chart.addPointSelectListener(ComponentEventListener<PointSelectEvent> listener)
Adds a point select listener, which will be notified when a data point
is selected.
|
Registration |
Chart.addPointUnselectListener(ComponentEventListener<PointUnselectEvent> listener)
Adds a point unselect listener, which will be notified when a data point
is unselected.
|
Registration |
Chart.addPointUpdateListener(ComponentEventListener<PointUpdateEvent> listener)
Adds a point update listener, which will be notified when a data point
is updated.
|
Registration |
Chart.addSeriesAfterAnimateListener(ComponentEventListener<SeriesAfterAnimateEvent> listener)
Adds a series after animate listener, which will be notified after a series
is animated
|
Registration |
Chart.addSeriesClickListener(ComponentEventListener<SeriesClickEvent> listener)
Adds a series click listener, which will be notified of clicks on the
series in the chart
|
Registration |
Chart.addSeriesHideListener(ComponentEventListener<SeriesHideEvent> listener)
Adds a series hide listener, which will be notified when a series is
hidden
|
Registration |
Chart.addSeriesLegendItemClickListener(ComponentEventListener<SeriesLegendItemClickEvent> listener)
Adds a series legend item click listener, which will be notified of
clicks on the legend's items corresponding to a Series
|
Registration |
Chart.addSeriesMouseOutListener(ComponentEventListener<SeriesMouseOutEvent> listener)
Adds a point mouse out listener, which will be notified when the mouse
exits the neighborhood of a series
|
Registration |
Chart.addSeriesMouseOverListener(ComponentEventListener<SeriesMouseOverEvent> listener)
Adds a point mouse out listener, which will be notified when the mouse
enters the neighborhood of a series
|
Registration |
Chart.addSeriesShowListener(ComponentEventListener<SeriesShowEvent> listener)
Adds a series show listener, which will be notified when a series is
shown
|
Registration |
Chart.addXAxesExtremesSetListener(ComponentEventListener<XAxesExtremesSetEvent> listener)
Adds a x axes extremes set listener, which will be notified when an x
axis extremes are set
|
Registration |
Chart.addYAxesExtremesSetListener(ComponentEventListener<YAxesExtremesSetEvent> listener)
Adds a y axes extremes set listener, which will be notified when an y
axis extremes are set
|
| Modifier and Type | Method and Description |
|---|---|
protected Registration |
GeneratedVaadinCheckbox.addChangeListener(ComponentEventListener<GeneratedVaadinCheckbox.ChangeEvent<R>> listener)
Adds a listener for
change events fired by the webcomponent. |
protected Registration |
GeneratedVaadinCheckbox.addCheckedChangeListener(ComponentEventListener<GeneratedVaadinCheckbox.CheckedChangeEvent<R>> listener)
Adds a listener for
checked-changed events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinCheckbox.addIndeterminateChangeListener(ComponentEventListener<GeneratedVaadinCheckbox.IndeterminateChangeEvent<R>> listener)
Adds a listener for
indeterminate-changed events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinCheckboxGroup.addInvalidChangeListener(ComponentEventListener<GeneratedVaadinCheckboxGroup.InvalidChangeEvent<R>> listener)
Adds a listener for
invalid-changed events fired by the
webcomponent. |
| Modifier and Type | Method and Description |
|---|---|
Registration |
ComboBox.addCustomValueSetListener(ComponentEventListener<GeneratedVaadinComboBox.CustomValueSetEvent<ComboBox<T>>> listener)
Adds a listener for CustomValueSetEvent which is fired when user types in
a value that don't already exist in the ComboBox.
|
protected Registration |
GeneratedVaadinComboBox.addCustomValueSetListener(ComponentEventListener<GeneratedVaadinComboBox.CustomValueSetEvent<R>> listener)
Adds a listener for
custom-value-set events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinComboBox.addFilterChangeListener(ComponentEventListener<GeneratedVaadinComboBox.FilterChangeEvent<R>> listener)
Adds a listener for
filter-changed events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinComboBox.addInvalidChangeListener(ComponentEventListener<GeneratedVaadinComboBox.InvalidChangeEvent<R>> listener)
Adds a listener for
invalid-changed events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinComboBox.addOpenedChangeListener(ComponentEventListener<GeneratedVaadinComboBox.OpenedChangeEvent<R>> listener)
Adds a listener for
opened-changed events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinComboBox.addSelectedItemChangeListener(ComponentEventListener<GeneratedVaadinComboBox.SelectedItemChangeEvent<R>> listener)
Adds a listener for
selected-item-changed events fired by the
webcomponent. |
| Modifier and Type | Method and Description |
|---|---|
Registration |
ConfirmDialog.addCancelListener(ComponentEventListener<ConfirmDialog.CancelEvent> listener)
Adds `cancel` event listener
|
Registration |
ConfirmDialog.addConfirmListener(ComponentEventListener<ConfirmDialog.ConfirmEvent> listener)
Adds `confirm` event listener
|
Registration |
ConfirmDialog.addRejectListener(ComponentEventListener<ConfirmDialog.RejectEvent> listener)
Adds `reject` event listener
|
void |
ConfirmDialog.setCancelButton(String buttonText,
ComponentEventListener<ConfirmDialog.CancelEvent> cancelListener)
Sets Cancel button text and `cancel` event listener.
|
void |
ConfirmDialog.setCancelButton(String buttonText,
ComponentEventListener<ConfirmDialog.CancelEvent> cancelListener,
String theme)
Sets Cancel button text, `cancel` event listener and
Cancel button theme.
|
void |
ConfirmDialog.setConfirmButton(String buttonText,
ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener)
Sets Confirm button text and `confirm` event listener
|
void |
ConfirmDialog.setConfirmButton(String buttonText,
ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener,
String theme)
Sets Confirm button text, `confirm` event listener and
Confirm button theme
|
void |
ConfirmDialog.setRejectButton(String buttonText,
ComponentEventListener<ConfirmDialog.RejectEvent> rejectListener)
Sets Reject button text and `reject` event listener.
|
void |
ConfirmDialog.setRejectButton(String buttonText,
ComponentEventListener<ConfirmDialog.RejectEvent> rejectListener,
String theme)
Sets Reject button text, `reject` event listener,
Reject button theme.
|
| Constructor and Description |
|---|
ConfirmDialog(String header,
String text,
String confirmText,
ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener)
Creates a dialog with a Confirm button with its click listener
and a given texts
|
ConfirmDialog(String header,
String text,
String confirmText,
ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener,
String cancelText,
ComponentEventListener<ConfirmDialog.CancelEvent> cancelListener)
Creates a two button dialog with Confirm and Cancel buttons
|
ConfirmDialog(String header,
String text,
String confirmText,
ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener,
String cancelText,
ComponentEventListener<ConfirmDialog.CancelEvent> cancelListener)
Creates a two button dialog with Confirm and Cancel buttons
|
ConfirmDialog(String header,
String text,
String confirmText,
ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener,
String rejectText,
ComponentEventListener<ConfirmDialog.RejectEvent> rejectListener,
String cancelText,
ComponentEventListener<ConfirmDialog.CancelEvent> cancelListener)
Creates a three button dialog with Confirm, Reject and Cancel buttons
|
ConfirmDialog(String header,
String text,
String confirmText,
ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener,
String rejectText,
ComponentEventListener<ConfirmDialog.RejectEvent> rejectListener,
String cancelText,
ComponentEventListener<ConfirmDialog.CancelEvent> cancelListener)
Creates a three button dialog with Confirm, Reject and Cancel buttons
|
ConfirmDialog(String header,
String text,
String confirmText,
ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener,
String rejectText,
ComponentEventListener<ConfirmDialog.RejectEvent> rejectListener,
String cancelText,
ComponentEventListener<ConfirmDialog.CancelEvent> cancelListener)
Creates a three button dialog with Confirm, Reject and Cancel buttons
|
| Modifier and Type | Method and Description |
|---|---|
MenuItem |
ContextMenu.addItem(Component component,
ComponentEventListener<ClickEvent<MenuItem>> clickListener)
Adds a new item component with the given component and click listener to
the context menu overlay.
|
MenuItem |
ContextMenu.addItem(String text,
ComponentEventListener<ClickEvent<MenuItem>> clickListener)
Adds a new item component with the given text content and click listener
to the context menu overlay.
|
Registration |
ContextMenuBase.addOpenedChangeListener(ComponentEventListener<GeneratedVaadinContextMenu.OpenedChangeEvent<C>> listener)
Adds a listener for the
opened-changed events fired by the web
component. |
protected Registration |
GeneratedVaadinContextMenu.addOpenedChangeListener(ComponentEventListener<GeneratedVaadinContextMenu.OpenedChangeEvent<R>> listener)
Adds a listener for
opened-changed events fired by the
webcomponent. |
| Modifier and Type | Method and Description |
|---|---|
Registration |
Crud.addCancelListener(ComponentEventListener<Crud.CancelEvent<E>> listener)
Registers a listener to be notified when the user cancels a new item creation or existing item
modification in progress.
|
Registration |
Crud.addDeleteListener(ComponentEventListener<Crud.DeleteEvent<E>> listener)
Registers a listener to be notified when the user tries to delete an existing item.
|
Registration |
Crud.addEditListener(ComponentEventListener<Crud.EditEvent<E>> listener)
Registers a listener to be notified when the user starts to edit an existing item.
|
Registration |
Crud.addNewListener(ComponentEventListener<Crud.NewEvent<E>> listener)
Registers a listener to be notified when the user starts to create a new item.
|
Registration |
Crud.addSaveListener(ComponentEventListener<Crud.SaveEvent<E>> listener)
Registers a listener to be notified when the user tries to save a new item
or modifications to an existing item.
|
| Modifier and Type | Method and Description |
|---|---|
Registration |
Dialog.addAttachListener(ComponentEventListener<AttachEvent> listener)
Adds a attach listener to this component.
|
Registration |
Dialog.addDetachListener(ComponentEventListener<DetachEvent> listener)
Adds a detach listener to this component.
|
Registration |
Dialog.addDialogCloseActionListener(ComponentEventListener<Dialog.DialogCloseActionEvent> listener)
Add a listener that controls whether the dialog should be closed or not.
|
Registration |
Dialog.addOpenedChangeListener(ComponentEventListener<GeneratedVaadinDialog.OpenedChangeEvent<Dialog>> listener)
Add a lister for event fired by the
opened-changed events. |
protected Registration |
GeneratedVaadinDialog.addOpenedChangeListener(ComponentEventListener<GeneratedVaadinDialog.OpenedChangeEvent<R>> listener)
Adds a listener for
opened-changed events fired by the
webcomponent. |
| Modifier and Type | Method and Description |
|---|---|
MenuItem |
GridContextMenu.addItem(Component component,
ComponentEventListener<GridContextMenu.GridContextMenuItemClickEvent<T>> clickListener)
Adds a new item component with the given component and click listener to
the context menu overlay.
|
MenuItem |
GridContextMenu.addItem(String text,
ComponentEventListener<GridContextMenu.GridContextMenuItemClickEvent<T>> clickListener)
Adds a new item component with the given text content and click listener
to the context menu overlay.
|
Registration |
Grid.addItemClickListener(ComponentEventListener<ItemClickEvent<T>> listener)
Adds an item click listener to this component.
|
Registration |
Grid.addItemDoubleClickListener(ComponentEventListener<ItemDoubleClickEvent<T>> listener)
Adds an item double click listener to this component.
|
Registration |
Grid.addSortListener(ComponentEventListener<SortEvent<Grid<T>,GridSortOrder<T>>> listener) |
| Constructor and Description |
|---|
NativeButton(String text,
ComponentEventListener<ClickEvent<NativeButton>> clickListener)
Creates a button with the given text and click listener.
|
| Modifier and Type | Method and Description |
|---|---|
Registration |
Notification.addAttachListener(ComponentEventListener<AttachEvent> listener)
Adds a attach listener to this component.
|
Registration |
Notification.addDetachListener(ComponentEventListener<DetachEvent> listener)
Adds a detach listener to this component.
|
Registration |
Notification.addOpenedChangeListener(ComponentEventListener<GeneratedVaadinNotification.OpenedChangeEvent<Notification>> listener) |
protected Registration |
GeneratedVaadinNotification.addOpenedChangeListener(ComponentEventListener<GeneratedVaadinNotification.OpenedChangeEvent<R>> listener)
Adds a listener for
opened-changed events fired by the
webcomponent. |
| Modifier and Type | Method and Description |
|---|---|
protected Registration |
GeneratedVaadinRadioButton.addCheckedChangeListener(ComponentEventListener<GeneratedVaadinRadioButton.CheckedChangeEvent<R>> listener)
Adds a listener for
checked-changed events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinRadioGroup.addInvalidChangeListener(ComponentEventListener<GeneratedVaadinRadioGroup.InvalidChangeEvent<R>> listener)
Adds a listener for
invalid-changed events fired by the
webcomponent. |
| Modifier and Type | Method and Description |
|---|---|
protected Registration |
GeneratedVaadinSplitLayout.addIronResizeListener(ComponentEventListener<GeneratedVaadinSplitLayout.IronResizeEvent<R>> listener)
Adds a listener for
iron-resize events fired by the webcomponent. |
protected Registration |
GeneratedVaadinSplitLayout.addSplitterDragendListener(ComponentEventListener<GeneratedVaadinSplitLayout.SplitterDragendEvent<R>> listener)
Adds a listener for
splitter-dragend events fired by the
webcomponent. |
Registration |
SplitLayout.addSplitterDragendListener(ComponentEventListener<GeneratedVaadinSplitLayout.SplitterDragendEvent<SplitLayout>> listener)
Adds a listener for the
splitter-dragend event, which is fired when the user has stopped resizing the
splitter with drag and drop. |
| Modifier and Type | Method and Description |
|---|---|
Registration |
Tabs.addSelectedChangeListener(ComponentEventListener<Tabs.SelectedChangeEvent> listener)
Adds a listener for
Tabs.SelectedChangeEvent. |
| Modifier and Type | Method and Description |
|---|---|
protected Registration |
GeneratedVaadinTextArea.addChangeListener(ComponentEventListener<GeneratedVaadinTextArea.ChangeEvent<R>> listener)
Adds a listener for
change events fired by the webcomponent. |
protected Registration |
GeneratedVaadinTextField.addChangeListener(ComponentEventListener<GeneratedVaadinTextField.ChangeEvent<R>> listener)
Adds a listener for
change events fired by the webcomponent. |
protected Registration |
GeneratedVaadinTextArea.addInvalidChangeListener(ComponentEventListener<GeneratedVaadinTextArea.InvalidChangeEvent<R>> listener)
Adds a listener for
invalid-changed events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinTextField.addInvalidChangeListener(ComponentEventListener<GeneratedVaadinTextField.InvalidChangeEvent<R>> listener)
Adds a listener for
invalid-changed events fired by the
webcomponent. |
| Modifier and Type | Method and Description |
|---|---|
Registration |
TreeGrid.addCollapseListener(ComponentEventListener<CollapseEvent<T,TreeGrid<T>>> listener)
Adds a CollapseEvent listener to this TreeGrid.
|
Registration |
TreeGrid.addExpandListener(ComponentEventListener<ExpandEvent<T,TreeGrid<T>>> listener)
Adds an ExpandEvent listener to this TreeGrid.
|
| Modifier and Type | Method and Description |
|---|---|
Registration |
Upload.addFailedListener(ComponentEventListener<FailedEvent> listener)
Add a succeeded listener that is informed on upload failure.
|
protected Registration |
GeneratedVaadinUploadFile.addFileAbortListener(ComponentEventListener<GeneratedVaadinUploadFile.FileAbortEvent<R>> listener)
Adds a listener for
file-abort events fired by the webcomponent. |
protected Registration |
GeneratedVaadinUpload.addFileRejectListener(ComponentEventListener<GeneratedVaadinUpload.FileRejectEvent<R>> listener)
Adds a listener for
file-reject events fired by the webcomponent. |
protected Registration |
GeneratedVaadinUploadFile.addFileRemoveListener(ComponentEventListener<GeneratedVaadinUploadFile.FileRemoveEvent<R>> listener)
Adds a listener for
file-remove events fired by the webcomponent. |
protected Registration |
GeneratedVaadinUploadFile.addFileRetryListener(ComponentEventListener<GeneratedVaadinUploadFile.FileRetryEvent<R>> listener)
Adds a listener for
file-retry events fired by the webcomponent. |
protected Registration |
GeneratedVaadinUpload.addFilesChangeListener(ComponentEventListener<GeneratedVaadinUpload.FilesChangeEvent<R>> listener)
Adds a listener for
files-changed events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinUploadFile.addFileStartListener(ComponentEventListener<GeneratedVaadinUploadFile.FileStartEvent<R>> listener)
Adds a listener for
file-start events fired by the webcomponent. |
Registration |
Upload.addFinishedListener(ComponentEventListener<FinishedEvent> listener)
Add a succeeded listener that is informed on upload finished.
|
protected Registration |
GeneratedVaadinUpload.addMaxFilesReachedChangeListener(ComponentEventListener<GeneratedVaadinUpload.MaxFilesReachedChangeEvent<R>> listener)
Adds a listener for
max-files-reached-changed events fired by the
webcomponent. |
Registration |
Upload.addProgressListener(ComponentEventListener<ProgressUpdateEvent> listener)
Add a progress listener that is informed on upload progress.
|
Registration |
Upload.addStartedListener(ComponentEventListener<StartedEvent> listener)
Add a succeeded listener that is informed on upload start.
|
Registration |
Upload.addSucceededListener(ComponentEventListener<SucceededEvent> listener)
Add a succeeded listener that is informed on upload succeeded.
|
protected Registration |
GeneratedVaadinUpload.addUploadAbortListener(ComponentEventListener<GeneratedVaadinUpload.UploadAbortEvent<R>> listener)
Adds a listener for
upload-abort events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinUpload.addUploadBeforeListener(ComponentEventListener<GeneratedVaadinUpload.UploadBeforeEvent<R>> listener)
Adds a listener for
upload-before events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinUpload.addUploadErrorListener(ComponentEventListener<GeneratedVaadinUpload.UploadErrorEvent<R>> listener)
Adds a listener for
upload-error events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinUpload.addUploadProgressListener(ComponentEventListener<GeneratedVaadinUpload.UploadProgressEvent<R>> listener)
Adds a listener for
upload-progress events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinUpload.addUploadRequestListener(ComponentEventListener<GeneratedVaadinUpload.UploadRequestEvent<R>> listener)
Adds a listener for
upload-request events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinUpload.addUploadResponseListener(ComponentEventListener<GeneratedVaadinUpload.UploadResponseEvent<R>> listener)
Adds a listener for
upload-response events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinUpload.addUploadRetryListener(ComponentEventListener<GeneratedVaadinUpload.UploadRetryEvent<R>> listener)
Adds a listener for
upload-retry events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinUpload.addUploadStartListener(ComponentEventListener<GeneratedVaadinUpload.UploadStartEvent<R>> listener)
Adds a listener for
upload-start events fired by the
webcomponent. |
protected Registration |
GeneratedVaadinUpload.addUploadSuccessListener(ComponentEventListener<GeneratedVaadinUpload.UploadSuccessEvent<R>> listener)
Adds a listener for
upload-success events fired by the
webcomponent. |
| Modifier and Type | Method and Description |
|---|---|
Registration |
SortEvent.SortNotifier.addSortListener(ComponentEventListener<SortEvent<T,S>> listener)
Adds a sort order change listener that gets notified when the sort
order changes.
|
Copyright © 2018. All rights reserved.