Uses of Class
com.vaadin.flow.component.confirmdialog.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 TypeMethodDescriptioncom.vaadin.flow.shared.RegistrationConfirmDialog.addConfirmListener(com.vaadin.flow.component.ComponentEventListener<ConfirmDialog.ConfirmEvent> listener) Adds `confirm` event listenervoidConfirmDialog.setConfirmButton(String buttonText, com.vaadin.flow.component.ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener) Sets Confirm button text and `confirm` event listenervoidConfirmDialog.setConfirmButton(String buttonText, com.vaadin.flow.component.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, com.vaadin.flow.component.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, com.vaadin.flow.component.ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener, String cancelText, com.vaadin.flow.component.ComponentEventListener<ConfirmDialog.CancelEvent> cancelListener) Creates a two button dialog with Confirm and Cancel buttonsConfirmDialog(String header, String text, String confirmText, com.vaadin.flow.component.ComponentEventListener<ConfirmDialog.ConfirmEvent> confirmListener, String rejectText, com.vaadin.flow.component.ComponentEventListener<ConfirmDialog.RejectEvent> rejectListener, String cancelText, com.vaadin.flow.component.ComponentEventListener<ConfirmDialog.CancelEvent> cancelListener) Creates a three button dialog with Confirm, Reject and Cancel buttons