Package io.jmix.ui.action.list
Class RemoveAction<E>
java.lang.Object
io.jmix.ui.action.AbstractAction
io.jmix.ui.action.BaseAction
io.jmix.ui.action.ListAction
io.jmix.ui.action.list.SecuredListAction
io.jmix.ui.action.list.RemoveAction<E>
- All Implemented Interfaces:
Action
,Action.AdjustWhenScreenReadOnly
,Action.ExecutableAction
,Action.HasPrimaryState
,Action.HasSecurityConstraint
,Action.HasTarget
,Action.SecuredAction
@StudioAction(target="io.jmix.ui.component.ListComponent",
description="Removes an entity instance from the list and from the database",
availableInScreenWizard=true)
@ActionType("remove")
public class RemoveAction<E>
extends SecuredListAction
implements Action.AdjustWhenScreenReadOnly, Action.ExecutableAction
Standard action for removing an entity instance from the list and from the database.
Should be defined for a list component (Table
, DataGrid
, etc.) in a screen XML descriptor.
The action instance can be parameterized using the nested properties
XML element or programmatically in the
screen controller.
-
Nested Class Summary
Nested classes/interfaces inherited from class io.jmix.ui.action.BaseAction
BaseAction.EnabledRule
Nested classes/interfaces inherited from interface io.jmix.ui.action.Action
Action.ActionPerformedEvent, Action.AdjustWhenScreenReadOnly, Action.ExecutableAction, Action.HasPrimaryState, Action.HasSecurityConstraint, Action.HasTarget, Action.MainTabSheetAction, Action.ScreenOpeningAction, Action.SecuredAction, Action.Status
-
Field Summary
Modifier and TypeFieldDescriptionprotected Consumer<RemoveOperation.ActionCancelledEvent<E>>
protected Consumer<RemoveOperation.AfterActionPerformedEvent<E>>
protected Boolean
protected String
protected String
static final String
protected RemoveOperation
Fields inherited from class io.jmix.ui.action.list.SecuredListAction
accessManager, applicationContext, constraintEntityOp, metadata
Fields inherited from class io.jmix.ui.action.ListAction
target
Fields inherited from class io.jmix.ui.action.AbstractAction
caption, description, enabled, eventHub, icon, id, owners, primary, shortcut, visible
Fields inherited from interface io.jmix.ui.action.Action
PROP_CAPTION, PROP_DESCRIPTION, PROP_ENABLED, PROP_ICON, PROP_SHORTCUT, PROP_VISIBLE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
actionPerform
(Component component) Invoked by owning component to execute the action.protected boolean
void
execute()
Executes the action.Returns true/false if the confirmation flag was set bysetConfirmation(Boolean)
or in the screen XML.Returns confirmation dialog message if it was set bysetConfirmationMessage(String)
or in the screen XML.Returns confirmation dialog title if it was set bysetConfirmationTitle(String)
or in the screen XML.protected boolean
Callback method which is invoked by the action to determine its enabled state.void
setActionCancelledHandler
(Consumer<RemoveOperation.ActionCancelledEvent<E>> actionCancelledHandler) Sets the handler to be invoked if the action was cancelled by the user.void
setAfterActionPerformedHandler
(Consumer<RemoveOperation.AfterActionPerformedEvent<E>> afterActionPerformedHandler) Sets the handler to be invoked after removing entities.void
setConfirmation
(Boolean confirmation) Sets whether to ask confirmation from the user.void
setConfirmationMessage
(String confirmationMessage) Sets confirmation dialog message.void
setConfirmationTitle
(String confirmationTitle) Sets confirmation dialog title.protected void
protected void
setMessages
(Messages messages) void
setRemoveOperation
(RemoveOperation removeOperation) protected void
setUiComponentProperties
(UiComponentProperties componentProperties) Methods inherited from class io.jmix.ui.action.list.SecuredListAction
getConstraintEntityOp, isApplicable, setAccessManager, setApplicationContext, setConstraintEntityOp, setMetadata
Methods inherited from class io.jmix.ui.action.ListAction
getTarget, setTarget, withCaption, withDescription, withHandler, withIcon, withPrimary, withShortcut
Methods inherited from class io.jmix.ui.action.BaseAction
addActionPerformedListener, addEnabledRule, isEnabledByRule, isEnabledByUiPermissions, isVisibleByUiPermissions, refreshState, removeEnabledRule, setEnabled, setEnabledByUiPermissions, setEnabledInternal, setVisible, setVisibleByUiPermissions, setVisibleInternal
Methods inherited from class io.jmix.ui.action.AbstractAction
addOwner, addPropertyChangeListener, firePropertyChange, getCaption, getDescription, getEventHub, getIcon, getId, getOwner, getOwners, getShortcutCombination, hasSubscriptions, isEnabled, isPrimary, isVisible, removeOwner, removePropertyChangeListener, setCaption, setDescription, setIcon, setPrimary, setShortcut, setShortcutCombination
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.jmix.ui.action.Action
addOwner, addPropertyChangeListener, getCaption, getDescription, getIcon, getId, getOwner, getOwners, getShortcutCombination, isEnabled, isVisible, refreshState, removeOwner, removePropertyChangeListener, setCaption, setDescription, setEnabled, setIcon, setShortcut, setShortcutCombination, setVisible
Methods inherited from interface io.jmix.ui.action.Action.AdjustWhenScreenReadOnly
isDisabledWhenScreenReadOnly
-
Field Details
-
ID
- See Also:
-
removeOperation
-
confirmation
-
confirmationMessage
-
confirmationTitle
-
afterActionPerformedHandler
-
actionCancelledHandler
-
-
Constructor Details
-
RemoveAction
public RemoveAction() -
RemoveAction
-
-
Method Details
-
getConfirmation
Returns true/false if the confirmation flag was set bysetConfirmation(Boolean)
or in the screen XML. Otherwise returns null. -
setConfirmation
Sets whether to ask confirmation from the user. -
getConfirmationMessage
Returns confirmation dialog message if it was set bysetConfirmationMessage(String)
or in the screen XML. Otherwise returns null. -
setConfirmationMessage
Sets confirmation dialog message. -
getConfirmationTitle
Returns confirmation dialog title if it was set bysetConfirmationTitle(String)
or in the screen XML. Otherwise returns null. -
setConfirmationTitle
Sets confirmation dialog title. -
setAfterActionPerformedHandler
public void setAfterActionPerformedHandler(Consumer<RemoveOperation.AfterActionPerformedEvent<E>> afterActionPerformedHandler) Sets the handler to be invoked after removing entities.The preferred way to set the handler is using a controller method annotated with
Install
, e.g.:@Install(to = "petsTable.remove", subject = "afterActionPerformedHandler") protected void petsTableRemoveAfterActionPerformedHandler(RemoveOperation.AfterActionPerformedEvent event) { System.out.println("Removed " + event.getItems()); }
-
setActionCancelledHandler
public void setActionCancelledHandler(Consumer<RemoveOperation.ActionCancelledEvent<E>> actionCancelledHandler) Sets the handler to be invoked if the action was cancelled by the user.The preferred way to set the handler is using a controller method annotated with
Install
, e.g.:@Install(to = "petsTable.remove", subject = "actionCancelledHandler") protected void petsTableRemoveActionCancelledHandler(RemoveOperation.ActionCancelledEvent event) { System.out.println("Cancelled"); }
-
setIcons
-
setMessages
-
setUiComponentProperties
-
setRemoveOperation
-
isPermitted
protected boolean isPermitted()Description copied from class:BaseAction
Callback method which is invoked by the action to determine its enabled state.- Overrides:
isPermitted
in classSecuredListAction
- Returns:
- true if the action is enabled for the current user
-
checkRemovePermission
protected boolean checkRemovePermission() -
actionPerform
Description copied from interface:Action
Invoked by owning component to execute the action.- Specified by:
actionPerform
in interfaceAction
- Overrides:
actionPerform
in classBaseAction
- Parameters:
component
- invoking component
-
execute
public void execute()Executes the action.- Specified by:
execute
in interfaceAction.ExecutableAction
-