Uses of Interface
com.vaadin.flow.shared.Registration
Packages that use Registration
Package
Description
-
Uses of Registration in com.vaadin.collaborationengine
Classes in com.vaadin.collaborationengine that implement RegistrationModifier and TypeClassDescriptionclass
A registration for configuring or removing a topic connection that is opened with Collaboration Engine.Methods in com.vaadin.collaborationengine that return RegistrationModifier and TypeMethodDescriptionabstract Registration
Backend.addMembershipListener
(MembershipListener membershipListener) Adds a listener of membership events.LocalBackend.addMembershipListener
(MembershipListener membershipListener) HighlightHandler.handleHighlight
(HighlightHandler.HighlightContext context) Handles a change of highlight for a property in a topic.PresenceHandler.handlePresence
(PresenceHandler.PresenceContext context) Handles a change of user presence in a topic.ComponentConnectionContext.init
(ActivationHandler activationHandler, Executor backgroundRunner) ConnectionContext.init
(ActivationHandler activationHandler, Executor executor) Initializes the connection context with aActivationHandler
and anExecutor
.SystemConnectionContext.init
(ActivationHandler activationHandler, Executor executor) AbstractCollaborationManager.ActivationHandler.onActivation()
The method executed when the manager is activated.CollaborationMessageSubmitter.onActivation
(CollaborationMessageSubmitter.ActivationContext activationContext) Handles the activation of the submitter, for example setting up an input component to append new messages using theCollaborationMessageSubmitter.ActivationContext.appendMessage(String)
method.Backend.EventLog.subscribe
(UUID newerThan, BiConsumer<UUID, String> eventConsumer) Adds a subscriber to receive all past and future events for this event log.CollaborationList.subscribe
(ListSubscriber subscriber) Subscribes to changes to this list.CollaborationMap.subscribe
(MapSubscriber subscriber) Subscribes to changes to this map.Method parameters in com.vaadin.collaborationengine with type arguments of type RegistrationModifier and TypeMethodDescriptionprotected void
AbstractCollaborationManager.openTopicConnection
(ConnectionContext context, SerializableFunction<TopicConnection, Registration> connectionActivationCallback) Opens a connection to the topic of this manager using the provided context and activation callback.CollaborationEngine.openTopicConnection
(ConnectionContext context, String topicId, UserInfo localUser, SerializableFunction<TopicConnection, Registration> connectionActivationCallback) Opens a connection to the collaboration topic with the provided id based on a generic context definition.CollaborationEngine.openTopicConnection
(Component component, String topicId, UserInfo localUser, SerializableFunction<TopicConnection, Registration> connectionActivationCallback) Opens a connection to the collaboration topic with the provided id based on a component instance. -
Uses of Registration in com.vaadin.flow.component
Classes in com.vaadin.flow.component that implement RegistrationModifier and TypeClassDescriptionclass
A registration object for both configuring and removing the registered keyboard shortcut.Methods in com.vaadin.flow.component that return RegistrationModifier and TypeMethodDescriptionUI.addAfterNavigationListener
(AfterNavigationListener listener) Add a listener that will be informed when new components have been attached and all navigation tasks have resolved.default Registration
AttachNotifier.addAttachListener
(ComponentEventListener<AttachEvent> listener) Adds a attach listener to this component.UI.addBeforeEnterListener
(BeforeEnterListener listener) Add a listener that will be informed when a new set of components are going to be attached.UI.addBeforeLeaveListener
(BeforeLeaveListener listener) Add a listener that will be informed when old components are detached.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 acompositionend
listener to this component.default Registration
CompositionNotifier.addCompositionStartListener
(ComponentEventListener<CompositionStartEvent> listener) Adds acompositionstart
listener to this component.default Registration
CompositionNotifier.addCompositionUpdateListener
(ComponentEventListener<CompositionUpdateEvent> listener) Adds acompositionupdate
listener to this component.default Registration
DetachNotifier.addDetachListener
(ComponentEventListener<DetachEvent> listener) Adds a detach listener to this component.default Registration
ClickNotifier.addDoubleClickListener
(ComponentEventListener<ClickEvent<T>> listener) Adds a double click listener to this component.default Registration
FocusNotifier.addFocusListener
(ComponentEventListener<FocusNotifier.FocusEvent<T>> listener) Add a listener to focus DOM events.UI.addHeartbeatListener
(HeartbeatListener listener) Add a listener that will be informed when this UI received a heartbeat from the client-side.default Registration
InputNotifier.addInputListener
(ComponentEventListener<InputEvent> listener) Adds an input listener to this component.default Registration
KeyNotifier.addKeyDownListener
(ComponentEventListener<KeyDownEvent> listener) Adds akeydown
listener to this component.default Registration
KeyNotifier.addKeyDownListener
(Key key, ComponentEventListener<KeyDownEvent> listener, KeyModifier... modifiers) Adds akeydown
listener to this component, which will trigger only if the keys involved in the event match thekey
andmodifiers
parameters.default Registration
KeyNotifier.addKeyPressListener
(ComponentEventListener<KeyPressEvent> listener) Adds akeypress
listener to this component.default Registration
KeyNotifier.addKeyPressListener
(Key key, ComponentEventListener<KeyPressEvent> listener, KeyModifier... modifiers) Adds akeypress
listener to this component, which will trigger only if the keys involved in the event match thekey
andmodifiers
parameters.default Registration
KeyNotifier.addKeyUpListener
(ComponentEventListener<KeyUpEvent> listener) Adds akeyup
listener to this component.default Registration
KeyNotifier.addKeyUpListener
(Key key, ComponentEventListener<KeyUpEvent> listener, KeyModifier... modifiers) Adds akeyup
listener to this component, which will trigger only if the keys involved in the event match thekey
andmodifiers
parameters.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.default Registration
PollNotifier.addPollListener
(ComponentEventListener<PollEvent> listener) Add a poll listener.default Registration
ClickNotifier.addSingleClickListener
(ComponentEventListener<ClickEvent<T>> listener) Adds a single click listener to this component.AbstractCompositeField.addValueChangeListener
(HasValue.ValueChangeListener<? super AbstractField.ComponentValueChangeEvent<S, T>> listener) AbstractField.addValueChangeListener
(HasValue.ValueChangeListener<? super AbstractField.ComponentValueChangeEvent<C, T>> listener) HasValue.addValueChangeListener
(HasValue.ValueChangeListener<? super E> listener) Adds a value change listener.static Registration
Shortcuts.setShortcutListenOnElement
(String elementLocatorJs, Component listenOnComponent) Setup an element, that is only accessible on the browser (not server side), to listen for shortcut events on and delegate to the given component. -
Uses of Registration in com.vaadin.flow.component.accordion
Methods in com.vaadin.flow.component.accordion that return RegistrationModifier and TypeMethodDescriptionAccordion.addOpenedChangeListener
(ComponentEventListener<Accordion.OpenedChangeEvent> listener) Registers a listener to be notified whenever a panel is opened or closed. -
Uses of Registration in com.vaadin.flow.component.button
Methods in com.vaadin.flow.component.button that return RegistrationModifier and TypeMethodDescriptionButton.addBlurListener
(ComponentEventListener<BlurNotifier.BlurEvent<Button>> listener) Add a listener to blur DOM events.Button.addFocusListener
(ComponentEventListener<FocusNotifier.FocusEvent<Button>> listener) Add a listener to focus DOM events. -
Uses of Registration in com.vaadin.flow.component.charts
Methods in com.vaadin.flow.component.charts that return RegistrationModifier and TypeMethodDescriptionChart.addChartAddSeriesListener
(ComponentEventListener<ChartAddSeriesEvent> listener) Adds a chart add series listener, which will be notified after a new series is added to the chartChart.addChartAfterPrintListener
(ComponentEventListener<ChartAfterPrintEvent> listener) Adds a chart after print listener, which will be notified after the chart is printed using the print menuChart.addChartBeforePrintListener
(ComponentEventListener<ChartBeforePrintEvent> listener) Adds a chart before print listener, which will be notified before the chart is printed using the print menuChart.addChartClickListener
(ComponentEventListener<ChartClickEvent> listener) Adds chart click listener, which will be notified of clicks on the chart areaChart.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.Chart.addChartDrillupListener
(ComponentEventListener<ChartDrillupEvent> listener) Adds chart drillup listener, which will be notified of clicks on the 'Back to previous series' button.Chart.addChartLoadListener
(ComponentEventListener<ChartLoadEvent> listener) Adds a chart load listener, which will be notified after a chart is loadedChart.addChartRedrawListener
(ComponentEventListener<ChartRedrawEvent> listener) Adds a chart redraw listener, which will be notified after a chart is redrawnChart.addChartSelectionListener
(ComponentEventListener<ChartSelectionEvent> listener) Adds a chart selection listenerChart.addCheckBoxClickListener
(ComponentEventListener<SeriesCheckboxClickEvent> listener) Adds checkbox click listener, which will be notified when user has clicked a checkbox in the legendChart.addDrilldownListener
(ComponentEventListener<DrilldownEvent> listener) Sets the Chart drilldown handler that's responsible for returning the drilldown series for each drilldown callback when doing async drilldownChart.addPointClickListener
(ComponentEventListener<PointClickEvent> listener) Adds a point click listener, which will be notified of clicks on the points, bars or columns in the chartChart.addPointDragListener
(ComponentEventListener<PointDragEvent> listener) Adds a point drag listener, which will be notified while point is dragged.Chart.addPointDragStartListener
(ComponentEventListener<PointDragStartEvent> listener) Adds a point drag start listener, which will be notified when starting to drag a point.Chart.addPointDropListener
(ComponentEventListener<PointDropEvent> listener) Adds a point drop listener, which will be notified point is dropped.Adds a point legend item click listener, which will be notified of clicks on the legend's items corresponding to a PointChart.addPointMouseOutListener
(ComponentEventListener<PointMouseOutEvent> listener) Adds a point mouse out listener, which will be notified when the mouse exits the neighborhood of a data pointChart.addPointMouseOverListener
(ComponentEventListener<PointMouseOverEvent> listener) Adds a point mouse over listener, which will be notified when the mouse enters the neighborhood of a data pointChart.addPointRemoveListener
(ComponentEventListener<PointRemoveEvent> listener) Adds a point remove listener, which will be notified when a data point is removed.Chart.addPointSelectListener
(ComponentEventListener<PointSelectEvent> listener) Adds a point select listener, which will be notified when a data point is selected.Chart.addPointUnselectListener
(ComponentEventListener<PointUnselectEvent> listener) Adds a point unselect listener, which will be notified when a data point is unselected.Chart.addPointUpdateListener
(ComponentEventListener<PointUpdateEvent> listener) Adds a point update listener, which will be notified when a data point is updated.Chart.addSeriesAfterAnimateListener
(ComponentEventListener<SeriesAfterAnimateEvent> listener) Adds a series after animate listener, which will be notified after a series is animatedChart.addSeriesClickListener
(ComponentEventListener<SeriesClickEvent> listener) Adds a series click listener, which will be notified of clicks on the series in the chartChart.addSeriesHideListener
(ComponentEventListener<SeriesHideEvent> listener) Adds a series hide listener, which will be notified when a series is hiddenAdds a series legend item click listener, which will be notified of clicks on the legend's items corresponding to a SeriesChart.addSeriesMouseOutListener
(ComponentEventListener<SeriesMouseOutEvent> listener) Adds a point mouse out listener, which will be notified when the mouse exits the neighborhood of a seriesChart.addSeriesMouseOverListener
(ComponentEventListener<SeriesMouseOverEvent> listener) Adds a point mouse out listener, which will be notified when the mouse enters the neighborhood of a seriesChart.addSeriesShowListener
(ComponentEventListener<SeriesShowEvent> listener) Adds a series show listener, which will be notified when a series is shownChart.addXAxesExtremesSetListener
(ComponentEventListener<XAxesExtremesSetEvent> listener) Adds a x axes extremes set listener, which will be notified when an x axis extremes are setChart.addYAxesExtremesSetListener
(ComponentEventListener<YAxesExtremesSetEvent> listener) Adds a y axes extremes set listener, which will be notified when an y axis extremes are set -
Uses of Registration in com.vaadin.flow.component.checkbox
Methods in com.vaadin.flow.component.checkbox that return RegistrationModifier and TypeMethodDescriptionCheckboxGroup.addSelectionListener
(MultiSelectionListener<CheckboxGroup<T>, T> listener) -
Uses of Registration in com.vaadin.flow.component.combobox
Methods in com.vaadin.flow.component.combobox that return RegistrationModifier and TypeMethodDescriptionComboBoxBase.addCustomValueSetListener
(ComponentEventListener<ComboBoxBase.CustomValueSetEvent<TComponent>> listener) Adds a listener for the event which is fired when user inputs a string value that does not match any existing items and commits it eg.MultiSelectComboBox.addSelectionListener
(MultiSelectionListener<MultiSelectComboBox<TItem>, TItem> listener) -
Uses of Registration in com.vaadin.flow.component.combobox.dataview
Methods in com.vaadin.flow.component.combobox.dataview that return RegistrationModifier and TypeMethodDescriptionComboBoxDataView.addItemCountChangeListener
(ComponentEventListener<ItemCountChangeEvent<?>> listener) Add an item count change listener that is fired when the item count changes.ComboBoxLazyDataView.addItemCountChangeListener
(ComponentEventListener<ItemCountChangeEvent<?>> listener) Add an item count change listener that is fired when the item count changes.ComboBoxListDataView.addItemCountChangeListener
(ComponentEventListener<ItemCountChangeEvent<?>> listener) Add an item count change listener that is fired when the item count changes. -
Uses of Registration in com.vaadin.flow.component.confirmdialog
Methods in com.vaadin.flow.component.confirmdialog that return RegistrationModifier and TypeMethodDescriptionConfirmDialog.addCancelListener
(ComponentEventListener<ConfirmDialog.CancelEvent> listener) Adds `cancel` event listenerConfirmDialog.addConfirmListener
(ComponentEventListener<ConfirmDialog.ConfirmEvent> listener) Adds `confirm` event listenerConfirmDialog.addRejectListener
(ComponentEventListener<ConfirmDialog.RejectEvent> listener) Adds `reject` event listener -
Uses of Registration in com.vaadin.flow.component.crud
Methods in com.vaadin.flow.component.crud that return RegistrationModifier and TypeMethodDescriptionCrud.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.Crud.addDeleteListener
(ComponentEventListener<Crud.DeleteEvent<E>> listener) Registers a listener to be notified when the user tries to delete an existing item.Crud.addEditListener
(ComponentEventListener<Crud.EditEvent<E>> listener) Registers a listener to be notified when the user starts to edit an existing item.Crud.addNewListener
(ComponentEventListener<Crud.NewEvent<E>> listener) Registers a listener to be notified when the user starts to create a new item.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. -
Uses of Registration in com.vaadin.flow.component.dashboard
Methods in com.vaadin.flow.component.dashboard that return RegistrationModifier and TypeMethodDescriptionDashboard.addItemMovedListener
(ComponentEventListener<DashboardItemMovedEvent> listener) Adds an item moved listener to this dashboard.Dashboard.addItemMoveModeChangedListener
(ComponentEventListener<DashboardItemMoveModeChangedEvent> listener) Adds an item move mode change listener to this dashboard.Dashboard.addItemRemovedListener
(ComponentEventListener<DashboardItemRemovedEvent> listener) Adds an item removed listener to this dashboard.Dashboard.addItemResizedListener
(ComponentEventListener<DashboardItemResizedEvent> listener) Adds an item resized listener to this dashboard.Dashboard.addItemResizeModeChangedListener
(ComponentEventListener<DashboardItemResizeModeChangedEvent> listener) Adds an item resize mode change listener to this dashboard.Dashboard.addItemSelectedChangedListener
(ComponentEventListener<DashboardItemSelectedChangedEvent> listener) Adds an item selected change listener to this dashboard. -
Uses of Registration in com.vaadin.flow.component.datepicker
Methods in com.vaadin.flow.component.datepicker that return RegistrationModifier and TypeMethodDescriptionDatePicker.addInvalidChangeListener
(ComponentEventListener<DatePicker.InvalidChangeEvent> listener) Adds a listener forinvalid-changed
events fired by the webcomponent.DatePicker.addOpenedChangeListener
(ComponentEventListener<DatePicker.OpenedChangeEvent> listener) Adds a listener foropened-changed
events fired by the webcomponent.DatePicker.addValidationStatusChangeListener
(ValidationStatusChangeListener<LocalDate> listener) -
Uses of Registration in com.vaadin.flow.component.datetimepicker
Methods in com.vaadin.flow.component.datetimepicker that return RegistrationModifier and TypeMethodDescriptionDateTimePicker.addValidationStatusChangeListener
(ValidationStatusChangeListener<LocalDateTime> listener) -
Uses of Registration in com.vaadin.flow.component.details
Methods in com.vaadin.flow.component.details that return RegistrationModifier and TypeMethodDescriptionDetails.addOpenedChangeListener
(ComponentEventListener<Details.OpenedChangeEvent> listener) Adds a listener to get notified when the opened state of the component changes. -
Uses of Registration in com.vaadin.flow.component.dialog
Methods in com.vaadin.flow.component.dialog that return RegistrationModifier and TypeMethodDescriptionDialog.addAttachListener
(ComponentEventListener<AttachEvent> listener) Adds a attach listener to this component.Dialog.addDetachListener
(ComponentEventListener<DetachEvent> listener) Adds a detach listener to this component.Dialog.addDialogCloseActionListener
(ComponentEventListener<Dialog.DialogCloseActionEvent> listener) Add a listener that controls whether the dialog should be closed or not.Dialog.addDraggedListener
(ComponentEventListener<Dialog.DialogDraggedEvent> listener) Adds a listener that is called after user finishes dragging the overlay.Dialog.addOpenedChangeListener
(ComponentEventListener<Dialog.OpenedChangeEvent> listener) Add a lister for event fired by theopened-changed
events.Dialog.addResizeListener
(ComponentEventListener<Dialog.DialogResizeEvent> listener) Adds a listener that is called after user finishes resizing the overlay. -
Uses of Registration in com.vaadin.flow.component.dnd
Methods in com.vaadin.flow.component.dnd that return RegistrationModifier and TypeMethodDescriptiondefault Registration
DragSource.addDragEndListener
(ComponentEventListener<DragEndEvent<T>> listener) Attaches dragend listener for the current drag source.The listener is triggered when dragend event happens on the client side.default Registration
DragSource.addDragStartListener
(ComponentEventListener<DragStartEvent<T>> listener) Attaches dragstart listener for the current drag source.default Registration
DropTarget.addDropListener
(ComponentEventListener<DropEvent<T>> listener) Attaches drop listener for the component this maps to. -
Uses of Registration in com.vaadin.flow.component.fieldhighlighter
Methods in com.vaadin.flow.component.fieldhighlighter that return Registration -
Uses of Registration in com.vaadin.flow.component.grid
Methods in com.vaadin.flow.component.grid that return RegistrationModifier and TypeMethodDescriptionGrid.addCellFocusListener
(ComponentEventListener<CellFocusEvent<T>> listener) Adds a listener to the grid that will be notified, when a cell has been focused.AbstractGridMultiSelectionModel.addClientItemToggleListener
(ComponentEventListener<ClientItemToggleEvent<T>> listener) GridMultiSelectionModel.addClientItemToggleListener
(ComponentEventListener<ClientItemToggleEvent<T>> listener) Adds a client item toggle listener that will be called when the user toggles the selection state of an item on the client-side.Grid.addColumnReorderListener
(ComponentEventListener<ColumnReorderEvent<T>> listener) Adds a column reorder listener to this component.Grid.addColumnResizeListener
(ComponentEventListener<ColumnResizeEvent<T>> listener) Adds a column resize listener to this component.Grid.addDataGenerator
(DataGenerator<T> dataGenerator) Grid.addDragEndListener
(ComponentEventListener<GridDragEndEvent<T>> listener) Adds a drag end listener to this component.Grid.addDragStartListener
(ComponentEventListener<GridDragStartEvent<T>> listener) Adds a drag start listener to this component.Grid.addDropListener
(ComponentEventListener<GridDropEvent<T>> listener) Adds a drop listener to this component.Grid.addItemClickListener
(ComponentEventListener<ItemClickEvent<T>> listener) Adds an item click listener to this component.Grid.addItemDoubleClickListener
(ComponentEventListener<ItemDoubleClickEvent<T>> listener) Adds an item double click listener to this component.AbstractGridMultiSelectionModel.addMultiSelectionListener
(MultiSelectionListener<Grid<T>, T> listener) GridMultiSelectionModel.addMultiSelectionListener
(MultiSelectionListener<Grid<T>, T> listener) Adds a selection listener that will be called when the selection is changed either by the user or programmatically.AbstractGridMultiSelectionModel.addSelectionListener
(SelectionListener<Grid<T>, T> listener) AbstractGridSingleSelectionModel.addSelectionListener
(SelectionListener<Grid<T>, T> listener) Grid.addSelectionListener
(SelectionListener<Grid<T>, T> listener) Adds a selection listener to the current selection model.GridNoneSelectionModel.addSelectionListener
(SelectionListener<Grid<T>, T> listener) AbstractGridSingleSelectionModel.addSingleSelectionListener
(SingleSelectionListener<Grid<T>, T> listener) GridSingleSelectionModel.addSingleSelectionListener
(SingleSelectionListener<Grid<T>, T> listener) Adds a selection listener that will be called when the selection is changed either by the user or programmatically.Grid.addSortListener
(ComponentEventListener<SortEvent<Grid<T>, GridSortOrder<T>>> listener) Grid.addValueProvider
(String property, ValueProvider<T, ?> valueProvider) Adds a ValueProvider to this Grid that is not tied to a Column. -
Uses of Registration in com.vaadin.flow.component.grid.editor
Methods in com.vaadin.flow.component.grid.editor that return RegistrationModifier and TypeMethodDescriptionEditor.addCancelListener
(EditorCancelListener<T> listener) Adds an editor cancellistener
.EditorImpl.addCancelListener
(EditorCancelListener<T> listener) Editor.addCloseListener
(EditorCloseListener<T> listener) Adds an editor closelistener
.EditorImpl.addCloseListener
(EditorCloseListener<T> listener) Editor.addOpenListener
(EditorOpenListener<T> listener) Adds an editor openlistener
.EditorImpl.addOpenListener
(EditorOpenListener<T> listener) Editor.addSaveListener
(EditorSaveListener<T> listener) Adds an editor savelistener
.EditorImpl.addSaveListener
(EditorSaveListener<T> listener) -
Uses of Registration in com.vaadin.flow.component.gridpro
Methods in com.vaadin.flow.component.gridpro that return RegistrationModifier and TypeMethodDescriptionGridPro.addCellEditStartedListener
(ComponentEventListener<GridPro.CellEditStartedEvent<E>> listener) Registers a listener to be notified when the user starts to edit an existing item.GridPro.addItemPropertyChangedListener
(ComponentEventListener<GridPro.ItemPropertyChangedEvent<E>> listener) Registers a listener to be notified when the user has edited an existing item. -
Uses of Registration in com.vaadin.flow.component.html
Methods in com.vaadin.flow.component.html that return RegistrationModifier and TypeMethodDescriptionNativeDetails.addToggleListener
(ComponentEventListener<NativeDetails.ToggleEvent> listener) Adds a listener fortoggle
events fired by the details, which are dispatched to the details element whenever its state changes between open and closed. -
Uses of Registration in com.vaadin.flow.component.internal
Methods in com.vaadin.flow.component.internal that return RegistrationModifier and TypeMethodDescriptionUIInternals.addAfterNavigationListener
(AfterNavigationListener listener) Add a listener that will be informed when new components have been attached and all navigation tasks have resolved.UIInternals.addBeforeEnterListener
(BeforeEnterListener listener) Add a listener that will be informed when a new set of components are going to be attached.UIInternals.addBeforeLeaveListener
(BeforeLeaveListener listener) Add a listener that will be informed when old components are detached.UIInternals.addHeartbeatListener
(HeartbeatListener listener) AbstractFieldSupport.addValueChangeListener
(HasValue.ValueChangeListener<? super AbstractField.ComponentValueChangeEvent<C, T>> listener) -
Uses of Registration in com.vaadin.flow.component.listbox
Methods in com.vaadin.flow.component.listbox that return RegistrationModifier and TypeMethodDescriptionMultiSelectListBox.addSelectionListener
(MultiSelectionListener<MultiSelectListBox<T>, T> listener) -
Uses of Registration in com.vaadin.flow.component.login
Methods in com.vaadin.flow.component.login that return RegistrationModifier and TypeMethodDescriptionAbstractLogin.addForgotPasswordListener
(ComponentEventListener<AbstractLogin.ForgotPasswordEvent> listener) Adds `forgotPassword` event listener.AbstractLogin.addLoginListener
(ComponentEventListener<AbstractLogin.LoginEvent> listener) Adds `login` event listener. -
Uses of Registration in com.vaadin.flow.component.map
Methods in com.vaadin.flow.component.map that return RegistrationModifier and TypeMethodDescriptionMapBase.addClickEventListener
(ComponentEventListener<MapClickEvent> listener) Adds a click listener for the map.MapBase.addFeatureClickListener
(ComponentEventListener<MapFeatureClickEvent> listener) Adds a click listener for geographical features.MapBase.addFeatureClickListener
(VectorLayer layer, ComponentEventListener<MapFeatureClickEvent> listener) Adds a click listener for geographical features.MapBase.addFeatureDropListener
(ComponentEventListener<MapFeatureDropEvent> listener) Adds an event listener for when a feature is dropped after a drag operation.MapBase.addViewMoveEndEventListener
(ComponentEventListener<MapViewMoveEndEvent> listener) Adds an event listener for changes to the map's viewport. -
Uses of Registration in com.vaadin.flow.component.messages
Methods in com.vaadin.flow.component.messages that return RegistrationModifier and TypeMethodDescriptionMessageInput.addSubmitListener
(ComponentEventListener<MessageInput.SubmitEvent> listener) Adds a listener that is called when the user submits the value of the input field, which can be obtained withMessageInput.SubmitEvent.getValue()
. -
Uses of Registration in com.vaadin.flow.component.notification
Methods in com.vaadin.flow.component.notification that return RegistrationModifier and TypeMethodDescriptionNotification.addAttachListener
(ComponentEventListener<AttachEvent> listener) Adds a attach listener to this component.Notification.addDetachListener
(ComponentEventListener<DetachEvent> listener) Adds a detach listener to this component.Notification.addOpenedChangeListener
(ComponentEventListener<Notification.OpenedChangeEvent> listener) Adds a listener foropened-changed
events fired by the webcomponent. -
Uses of Registration in com.vaadin.flow.component.page
Methods in com.vaadin.flow.component.page that return RegistrationModifier and TypeMethodDescriptionPage.addBrowserWindowResizeListener
(BrowserWindowResizeListener resizeListener) Adds a newBrowserWindowResizeListener
to this UI. -
Uses of Registration in com.vaadin.flow.component.popover
Methods in com.vaadin.flow.component.popover that return RegistrationModifier and TypeMethodDescriptionPopover.addOpenedChangeListener
(ComponentEventListener<Popover.OpenedChangeEvent> listener) Add a listener for event fired by theopened-changed
events. -
Uses of Registration in com.vaadin.flow.component.select
Methods in com.vaadin.flow.component.select that return RegistrationModifier and TypeMethodDescriptionprotected Registration
Select.addInvalidChangeListener
(ComponentEventListener<Select.InvalidChangeEvent> listener) Adds a listener forinvalid-changed
events fired by the webcomponent.protected Registration
Select.addOpenedChangeListener
(ComponentEventListener<Select.OpenedChangeEvent> listener) Adds a listener foropened-changed
events fired by the webcomponent. -
Uses of Registration in com.vaadin.flow.component.splitlayout
Methods in com.vaadin.flow.component.splitlayout that return RegistrationModifier and TypeMethodDescriptionSplitLayout.addSplitterDragendListener
(ComponentEventListener<SplitLayout.SplitterDragendEvent> listener) Adds a listener for thesplitter-dragend
event, which is fired when the user has stopped resizing the splitter with drag and drop. -
Uses of Registration in com.vaadin.flow.component.tabs
Methods in com.vaadin.flow.component.tabs that return RegistrationModifier and TypeMethodDescriptionTabs.addSelectedChangeListener
(ComponentEventListener<Tabs.SelectedChangeEvent> listener) Adds a listener forTabs.SelectedChangeEvent
.TabSheet.addSelectedChangeListener
(ComponentEventListener<TabSheet.SelectedChangeEvent> listener) Adds a listener forTabSheet.SelectedChangeEvent
. -
Uses of Registration in com.vaadin.flow.component.textfield
Methods in com.vaadin.flow.component.textfield that return RegistrationModifier and TypeMethodDescriptionAbstractNumberField.addValidationStatusChangeListener
(ValidationStatusChangeListener<T> listener) BigDecimalField.addValidationStatusChangeListener
(ValidationStatusChangeListener<BigDecimal> listener) -
Uses of Registration in com.vaadin.flow.component.timepicker
Methods in com.vaadin.flow.component.timepicker that return RegistrationModifier and TypeMethodDescriptionTimePicker.addInvalidChangeListener
(ComponentEventListener<TimePicker.InvalidChangeEvent> listener) Adds a listener forinvalid-changed
events fired by the webcomponent.TimePicker.addValidationStatusChangeListener
(ValidationStatusChangeListener<LocalTime> listener) -
Uses of Registration in com.vaadin.flow.component.treegrid
Methods in com.vaadin.flow.component.treegrid that return RegistrationModifier and TypeMethodDescriptionTreeGrid.addCollapseListener
(ComponentEventListener<CollapseEvent<T, TreeGrid<T>>> listener) Adds a CollapseEvent listener to this TreeGrid.TreeGrid.addExpandListener
(ComponentEventListener<ExpandEvent<T, TreeGrid<T>>> listener) Adds an ExpandEvent listener to this TreeGrid. -
Uses of Registration in com.vaadin.flow.component.upload
Methods in com.vaadin.flow.component.upload that return RegistrationModifier and TypeMethodDescriptionUpload.addAllFinishedListener
(ComponentEventListener<AllFinishedEvent> listener) Add listener that is informed on all uploads finished.Upload.addFailedListener
(ComponentEventListener<FailedEvent> listener) Add a succeeded listener that is informed on upload failure.Upload.addFileRejectedListener
(ComponentEventListener<FileRejectedEvent> listener) Adds a listener forfile-reject
events fired when a file cannot be added due to some constrains:setMaxFileSize, setMaxFiles, setAcceptedFileTypes
Upload.addFileRemovedListener
(ComponentEventListener<FileRemovedEvent> listener) Adds a listener for events fired when a file is removed.Upload.addFinishedListener
(ComponentEventListener<FinishedEvent> listener) Add a succeeded listener that is informed on upload finished.Upload.addProgressListener
(ComponentEventListener<ProgressUpdateEvent> listener) Add a progress listener that is informed on upload progress.Upload.addStartedListener
(ComponentEventListener<StartedEvent> listener) Add a succeeded listener that is informed on upload start.Upload.addSucceededListener
(ComponentEventListener<SucceededEvent> listener) Add a succeeded listener that is informed on upload succeeded. -
Uses of Registration in com.vaadin.flow.data.binder
Methods in com.vaadin.flow.data.binder that return RegistrationModifier and TypeMethodDescriptionprotected <T> Registration
Binder.addListener
(Class<T> eventType, SerializableConsumer<T> method) Adds a listener to the binder.Binder.addStatusChangeListener
(StatusChangeListener listener) Adds status change listener to the binder.default Registration
HasValidator.addValidationStatusChangeListener
(ValidationStatusChangeListener<V> listener) Enables the implementing components to notify changes in their validation status to the observers.Binder.addValueChangeListener
(HasValue.ValueChangeListener<? super HasValue.ValueChangeEvent<?>> listener) Adds field value change listener to all the fields in the binder.ReadOnlyHasValue.addValueChangeListener
(HasValue.ValueChangeListener<? super HasValue.ValueChangeEvent<V>> listener) -
Uses of Registration in com.vaadin.flow.data.event
Methods in com.vaadin.flow.data.event that return RegistrationModifier and TypeMethodDescriptionSortEvent.SortNotifier.addSortListener
(ComponentEventListener<SortEvent<T, S>> listener) Adds a sort order change listener that gets notified when the sort order changes. -
Uses of Registration in com.vaadin.flow.data.provider
Methods in com.vaadin.flow.data.provider that return RegistrationModifier and TypeMethodDescriptionCompositeDataGenerator.addDataGenerator
(DataGenerator<T> generator) HasDataGenerators.addDataGenerator
(DataGenerator<T> generator) Adds the given data generator.AbstractDataProvider.addDataProviderListener
(DataProviderListener<T> listener) DataProvider.addDataProviderListener
(DataProviderListener<T> listener) Adds a data provider listener.DataProviderWrapper.addDataProviderListener
(DataProviderListener<T> listener) AbstractDataView.addIdentifierProviderChangeListener
(ComponentEventListener<IdentifierProviderChangeEvent<T, ?>> listener) Add an identifier provider change listener that is fired when a custom identifier provider is set withAbstractDataView.setIdentifierProvider(IdentifierProvider)
.AbstractDataView.addItemCountChangeListener
(ComponentEventListener<ItemCountChangeEvent<?>> listener) DataView.addItemCountChangeListener
(ComponentEventListener<ItemCountChangeEvent<?>> listener) Add an item count change listener that is fired when the item count changes.protected <E> Registration
AbstractDataProvider.addListener
(Class<E> eventType, SerializableConsumer<E> method) Registers a new listener with the specified activation method to listen events generated by this component. -
Uses of Registration in com.vaadin.flow.data.renderer
Methods in com.vaadin.flow.data.renderer that return RegistrationModifier and TypeMethodDescriptionClickableRenderer.addItemClickListener
(ClickableRenderer.ItemClickListener<SOURCE> listener) Adds a click listener to the renderer.NativeButtonRenderer.addItemClickListener
(ClickableRenderer.ItemClickListener<SOURCE> listener) default Registration
Rendering.getRegistration()
Gets aRegistration
that can be used to clean up resources associated with the renderer when it's no longer used. -
Uses of Registration in com.vaadin.flow.data.selection
Methods in com.vaadin.flow.data.selection that return RegistrationModifier and TypeMethodDescriptionMultiSelect.addSelectionListener
(MultiSelectionListener<C, T> listener) Adds a selection listener that will be called when the selection is changed either by the user or programmatically.SelectionModel.addSelectionListener
(SelectionListener<C, T> listener) Adds a generic listener to this selection model, accepting both single and multiselection events. -
Uses of Registration in com.vaadin.flow.dom
Subinterfaces of Registration in com.vaadin.flow.domModifier and TypeInterfaceDescriptioninterface
A registration for configuring or removing a DOM event listener added to an element.Methods in com.vaadin.flow.dom that return RegistrationModifier and TypeMethodDescriptionElement.addAttachListener
(ElementAttachListener attachListener) Adds an attach listener for this element.Element.addDetachListener
(ElementDetachListener detachListener) Adds a detach listener for this element.Element.addPropertyChangeListener
(String name, PropertyChangeListener listener) Adds a property change listener which is triggered when the property's value is updated on the server side.ElementStateProvider.addPropertyChangeListener
(StateNode node, String name, PropertyChangeListener listener) Adds a property change listener. -
Uses of Registration in com.vaadin.flow.dom.impl
Methods in com.vaadin.flow.dom.impl that return RegistrationModifier and TypeMethodDescriptionAbstractTextElementStateProvider.addPropertyChangeListener
(StateNode node, String name, PropertyChangeListener listener) BasicElementStateProvider.addPropertyChangeListener
(StateNode node, String name, PropertyChangeListener listener) ShadowRootStateProvider.addPropertyChangeListener
(StateNode node, String name, PropertyChangeListener listener) -
Uses of Registration in com.vaadin.flow.internal
Subinterfaces of Registration in com.vaadin.flow.internalModifier and TypeInterfaceDescriptionstatic interface
A registration object for removing a task registered for execution before the client response.Methods in com.vaadin.flow.internal that return RegistrationModifier and TypeMethodDescriptionStateNode.addAttachListener
(Command attachListener) Adds a command as an attach listener.static Registration
ReflectionCache.addClearAllAction
(Runnable action) Adds an action that will be run when all reflection caches are cleared.StateNode.addDetachListener
(Command detachListener) Adds a command as a detach listener. -
Uses of Registration in com.vaadin.flow.internal.nodefeature
Subinterfaces of Registration in com.vaadin.flow.internal.nodefeatureModifier and TypeInterfaceDescriptioninterface
A registration for a return channel.Methods in com.vaadin.flow.internal.nodefeature that return RegistrationModifier and TypeMethodDescriptionAdds a listener for a event created from a template method.ElementPropertyMap.addPropertyChangeListener
(String name, PropertyChangeListener listener) Adds a property change listener. -
Uses of Registration in com.vaadin.flow.router
Methods in com.vaadin.flow.router that return RegistrationModifier and TypeMethodDescriptionRouteConfiguration.addRoutesChangeListener
(RoutesChangedListener listener) Add a listener that is notified when routes change for the registry. -
Uses of Registration in com.vaadin.flow.router.internal
Methods in com.vaadin.flow.router.internal that return RegistrationModifier and TypeMethodDescriptionAbstractRouteRegistry.addRoutesChangeListener
(RoutesChangedListener listener) -
Uses of Registration in com.vaadin.flow.server
Methods in com.vaadin.flow.server that return RegistrationModifier and TypeMethodDescriptionRouteRegistry.addRoutesChangeListener
(RoutesChangedListener listener) Adds the given route change listener to the registry.SessionRouteRegistry.addRoutesChangeListener
(RoutesChangedListener listener) Adds the given route change listener to the registry.VaadinService.addServiceDestroyListener
(ServiceDestroyListener listener) Adds a service destroy listener that gets notified when this service is destroyed.VaadinService.addSessionDestroyListener
(SessionDestroyListener listener) Adds a listener that gets notified when a Vaadin service session that has been initialized for this service is destroyed.VaadinSession.addSessionDestroyListener
(SessionDestroyListener listener) Adds a listener that gets notified when this session is destroyed.VaadinService.addSessionInitListener
(SessionInitListener listener) Adds a listener that gets notified when a new Vaadin service session is initialized for this service.VaadinService.addUIInitListener
(UIInitListener listener) Adds a listener that gets notified when a new UI has been initialized.