Uses of Class
org.vaadin.firitin.components.button.ActionButton
Packages that use ActionButton
-
Uses of ActionButton in org.vaadin.firitin.components.button
Methods in org.vaadin.firitin.components.button that return ActionButtonModifier and TypeMethodDescriptionActionButton.addThemeVariants(com.vaadin.flow.component.button.ButtonVariant... variants) Adds theme variants to the underlyingVButton.ActionButton.removeThemeVariants(com.vaadin.flow.component.button.ButtonVariant... variants) Removes theme variants from the underlyingVButton.ActionButton.setAriaLabel(String ariaLabel) Sets the accessible name of the underlyingVButton.ActionButton.setBusyIcon(com.vaadin.flow.component.Component busyIcon) Sets a custom component to show in place of the icon while the task runs (instead of the default spinner).ActionButton.setBusyText(String text) Set the text of the button to show while the task is running (and button disabled).ActionButton.setCompletableFutureAction(Supplier<CompletableFuture<T>> task) ActionButton.setEnableAfterAction(boolean enableAfterAction) ActionButton.setIcon(com.vaadin.flow.component.Component icon) Sets the button's icon.ActionButton.setPostUiAction(Consumer<? super T> postUiAction) Sets an action to update the UI after the actual slow actions is completed.ActionButton.setPostUiUpdate(Consumer<? super T> postUiUpdate) Deprecated.ActionButton.setPreUiAction(Runnable preUiAction) Sets an action to update the UI before the actual slow actions is started.ActionButton.setPreUiUpdate(Runnable preUiUpdate) Deprecated, for removal: This API element is subject to removal in a future version.usesetPreUiAction(Runnable)insteadActionButton.setShowSpinner(boolean showSpinner) Forces the spinning busy indicator on or off (seeisShowSpinner()for the default behavior).ActionButton.setTooltipText(String tooltipText) Sets the tooltip of the underlyingVButton. -
Uses of ActionButton in org.vaadin.firitin.fields.localized
Methods in org.vaadin.firitin.fields.localized that return ActionButtonModifier and TypeMethodDescriptionLocalizedField.getTranslateButton()Returns theActionButtonthat triggers the "translate to other languages" action, so its presentation can be customized: get its inner button viagetButton()to change the icon, text, theme variants or tooltip, set a busy text, show its progress bar, etc.
setPostUiAction(Consumer)instead