Class WorkspaceTableActionConfigurationExtensions
Contains extension methods for workspace action configuration.
public static class WorkspaceTableActionConfigurationExtensions
- Inheritance
-
objectWorkspaceTableActionConfigurationExtensions
Methods
AddActionWithCustomComponent(IList<ActionConfiguration>, IActionComponent, string, ActionWorkspaceProperties, string, string, bool, bool, Action<ActionConfiguration, IDataContainer>)
Adds custom component action under specific workspace.
public static IList<ActionConfiguration> AddActionWithCustomComponent(this IList<ActionConfiguration> configuration, IActionComponent clientComponent, string label, ActionWorkspaceProperties actionWorkspaceProperties, string icon = null, string title = null, bool destructive = false, bool disabled = false, Action<ActionConfiguration, IDataContainer> actionStateEvaluator = null)
Parameters
configuration
IList<ActionConfiguration>Action configuration.
clientComponent
IActionComponentName of the component to be used. This name is connected with suffix "Component" when loading corresponding frontend component.
label
stringAction label.
actionWorkspaceProperties
ActionWorkspacePropertiesAction properties for a workspace.
icon
stringAction icon.
title
stringText of the tooltip.
destructive
boolDestructive action indication.
disabled
boolDisabled action.
actionStateEvaluator
Action<ActionConfiguration, IDataContainer>Action used for table action state evaluation per each row.
Returns
- IList<ActionConfiguration>
AddCommand(IList<ActionConfiguration>, string, string, ActionWorkspaceProperties, string, string, string, string, bool, Action<ActionConfiguration, IDataContainer>, ComponentContent, Type)
Adds command action under specific workspace.
public static IList<ActionConfiguration> AddCommand(this IList<ActionConfiguration> configuration, string commandName, string label, ActionWorkspaceProperties actionWorkspaceProperties, string icon = null, string confirmation = null, string confirmationButton = null, string title = null, bool destructive = false, Action<ActionConfiguration, IDataContainer> actionStateEvaluator = null, ComponentContent confirmationContent = null, Type confirmationModel = null)
Parameters
configuration
IList<ActionConfiguration>Configuration.
commandName
stringCommand name.
label
stringLabel.
actionWorkspaceProperties
ActionWorkspacePropertiesAction properties for a workspace.
icon
stringIcon.
confirmation
stringConfirmation title.
confirmationButton
stringText of the confirmation button.
title
stringText of the tooltip.
destructive
boolDestructive action indication.
actionStateEvaluator
Action<ActionConfiguration, IDataContainer>Action used for table action state evaluation per each row.
confirmationContent
ComponentContentContent of the confirmation dialog.
confirmationModel
TypeModel of form shown in confirmation dialog.
Returns
- IList<ActionConfiguration>
AddCommandWithConfirmation(IList<ActionConfiguration>, string, string, ActionWorkspaceProperties, string, string, string, string, string, bool, Action<ActionConfiguration, IDataContainer>, ComponentContent, Type)
Adds command action with confirmation dialog under specific workspace.
public static IList<ActionConfiguration> AddCommandWithConfirmation(this IList<ActionConfiguration> configuration, string commandName, string label, ActionWorkspaceProperties actionWorkspaceProperties, string confirmation, string confirmationButton, string confirmationDetail = null, string icon = null, string title = null, bool destructive = false, Action<ActionConfiguration, IDataContainer> actionStateEvaluator = null, ComponentContent confirmationContent = null, Type confirmationModel = null)
Parameters
configuration
IList<ActionConfiguration>Configuration.
commandName
stringCommand name.
label
stringLabel.
actionWorkspaceProperties
ActionWorkspacePropertiesAction properties for a workspace.
confirmation
stringConfirmation title.
confirmationButton
stringText of the confirmation button.
confirmationDetail
stringConfirmation text.
icon
stringIcon.
title
stringText of the tooltip.
destructive
boolDestructive action indication.
actionStateEvaluator
Action<ActionConfiguration, IDataContainer>Action used for table action state evaluation per each row.
confirmationContent
ComponentContentConfirmation content.
confirmationModel
TypeModel of form shown in confirmation dialog.
Returns
- IList<ActionConfiguration>
AddDeleteAction(IList<ActionConfiguration>, string, ActionWorkspaceProperties, string, Action<ActionConfiguration, IDataContainer>, string)
Adds a delete table action under specific workspace.
public static IList<ActionConfiguration> AddDeleteAction(this IList<ActionConfiguration> configuration, string commandName, ActionWorkspaceProperties actionWorkspaceProperties, string label = null, Action<ActionConfiguration, IDataContainer> actionStateEvaluator = null, string title = null)
Parameters
configuration
IList<ActionConfiguration>Action configuration.
commandName
stringCommand name.
actionWorkspaceProperties
ActionWorkspacePropertiesAction properties for a workspace.
label
stringCommand label.
actionStateEvaluator
Action<ActionConfiguration, IDataContainer>Action used for table action state evaluation per each row.
title
stringCommand title for tooltip.
Returns
- IList<ActionConfiguration>
AddLink<TPage>(IList<ActionConfiguration>, string, int, string, string, string, string, Action<ActionConfiguration, IDataContainer>, PageParameterValues)
Adds link action for a page under specific workspace.
public static IList<ActionConfiguration> AddLink<TPage>(this IList<ActionConfiguration> configuration, string label, int workspaceId, string icon = null, string confirmation = null, string confirmationButton = null, string title = null, Action<ActionConfiguration, IDataContainer> actionStateEvaluator = null, PageParameterValues parameters = null)
Parameters
configuration
IList<ActionConfiguration>Configuration.
label
stringLabel.
workspaceId
intWorkspace ID.
icon
stringIcon.
confirmation
stringConfirmation title.
confirmationButton
stringConfirmation button text.
title
stringText of the tooltip.
actionStateEvaluator
Action<ActionConfiguration, IDataContainer>Action used for table action state evaluation per each row.
parameters
PageParameterValuesParameter values to be substituted into the URL.
Returns
- IList<ActionConfiguration>
Type Parameters
TPage