Uses of Class
com.vaadin.flow.component.confirmdialog.ConfirmDialog.ConfirmEvent
Packages that use ConfirmDialog.ConfirmEvent
-
Uses of ConfirmDialog.ConfirmEvent in com.vaadin.flow.component.confirmdialog
Method parameters in com.vaadin.flow.component.confirmdialog with type arguments of type ConfirmDialog.ConfirmEventModifier and TypeMethodDescriptionConfirmDialog.addConfirmListener
(ComponentEventListener<ConfirmDialog.ConfirmEvent> listener) Adds `confirm` event listenervoid
ConfirmDialog.setConfirmButton
(String buttonText, ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener) Sets Confirm button text and `confirm` event listenervoid
ConfirmDialog.setConfirmButton
(String buttonText, ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener, String theme) Sets Confirm button text, `confirm` event listener and Confirm button themeConstructor parameters in com.vaadin.flow.component.confirmdialog with type arguments of type ConfirmDialog.ConfirmEventModifierConstructorDescriptionConfirmDialog
(String header, String text, String confirmText, ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener) Creates a dialog with a Confirm button with its click listener and a given textsConfirmDialog
(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 buttonsConfirmDialog
(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