Table of Contents

Class ActionConfigurationExtensions

Namespace
Kentico.Xperience.Admin.Base
Assembly
Kentico.Xperience.Admin.Base.dll

Contains extension methods for action configuration.

public static class ActionConfigurationExtensions
Inheritance
object
ActionConfigurationExtensions

Methods

AddActionWithCustomComponent(IList<ActionConfiguration>, IActionComponent, string, string, string, bool, bool, Action<ActionConfiguration, IDataContainer>)

Adds custom component action.

public static IList<ActionConfiguration> AddActionWithCustomComponent(this IList<ActionConfiguration> configuration, IActionComponent clientComponent, string label, string icon = null, string title = null, bool destructive = false, bool disabled = false, Action<ActionConfiguration, IDataContainer> actionStateEvaluator = null)

Parameters

configuration IList<ActionConfiguration>

Action configuration.

clientComponent IActionComponent

Name of the component to be used. This name is connected with suffix "Component" when loading corresponding frontend component.

label string

Action label.

icon string

Action icon.

title string

Text of the tooltip.

destructive bool

Destructive action indication.

disabled bool

Disabled action.

actionStateEvaluator Action<ActionConfiguration, IDataContainer>

Action used for table action state evaluation per each row.

Returns

IList<ActionConfiguration>

Remarks

Actions with custom component requires to set disabled flag when no sufficient permissions are met. Permissions are not automatically checked by used commands as they are part of component implementation.

AddCommand(IList<ActionConfiguration>, string, string, string, string, string, string, bool, Action<ActionConfiguration, IDataContainer>, ComponentContent, Type)

Adds command action.

public static IList<ActionConfiguration> AddCommand(this IList<ActionConfiguration> configuration, string label, string command, 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.

label string

Label.

command string

Command name.

icon string

Icon.

confirmation string

Confirmation title.

confirmationButton string

Text of the confirmation button.

title string

Text of the tooltip.

destructive bool

Destructive action indication.

actionStateEvaluator Action<ActionConfiguration, IDataContainer>

Action used for table action state evaluation per each row.

confirmationContent ComponentContent

Content of the confirmation dialog.

confirmationModel Type

Model of form shown in confirmation dialog.

Returns

IList<ActionConfiguration>

AddCommandWithConfirmation(IList<ActionConfiguration>, string, string, string, string, string, string, string, bool, Action<ActionConfiguration, IDataContainer>, ComponentContent, Type)

Adds command action with confirmation dialog.

public static IList<ActionConfiguration> AddCommandWithConfirmation(this IList<ActionConfiguration> configuration, string label, string command, 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.

label string

Label.

command string

Command name.

confirmation string

Confirmation title.

confirmationButton string

Text of the confirmation button.

confirmationDetail string

Confirmation text.

icon string

Icon.

title string

Text of the tooltip.

destructive bool

Destructive action indication.

actionStateEvaluator Action<ActionConfiguration, IDataContainer>

Action used for table action state evaluation per each row.

confirmationContent ComponentContent

Confirmation content.

confirmationModel Type

Model of form shown in confirmation dialog.

Returns

IList<ActionConfiguration>

AddLinkWithConfirmation<TPage>(IList<ActionConfiguration>, string, string, string, string, string, string, Action<ActionConfiguration, IDataContainer>, PageParameterValues)

Adds link action with confirmation dialog.

public static IList<ActionConfiguration> AddLinkWithConfirmation<TPage>(this IList<ActionConfiguration> configuration, string label, string confirmation, string confirmationButton, string confirmationDetail = null, string icon = null, string title = null, Action<ActionConfiguration, IDataContainer> actionStateEvaluator = null, PageParameterValues parameters = null)

Parameters

configuration IList<ActionConfiguration>

Configuration.

label string

Label.

confirmation string

Confirmation title.

confirmationButton string

Confirmation button text.

confirmationDetail string

Confirmation text.

icon string

Icon.

title string

Text of the tooltip.

actionStateEvaluator Action<ActionConfiguration, IDataContainer>

Action used for table action state evaluation per each row.

parameters PageParameterValues

Parameter values to be substituted into the URL.

Returns

IList<ActionConfiguration>

Type Parameters

TPage

AddLinkWithConfirmation<TPage>(IList<ActionConfiguration>, string, string, string, string, string, string, Action<ActionConfiguration, IDataContainer>, params string[])

Adds link action with confirmation dialog.

[Obsolete("Use AddLinkWithConfirmation with PageParameterValues instead.")]
[ObsoleteSince(29, 5)]
public static IList<ActionConfiguration> AddLinkWithConfirmation<TPage>(this IList<ActionConfiguration> configuration, string label, string confirmation, string confirmationButton, string confirmationDetail = null, string icon = null, string title = null, Action<ActionConfiguration, IDataContainer> actionStateEvaluator = null, params string[] parameters)

Parameters

configuration IList<ActionConfiguration>

Configuration.

label string

Label.

confirmation string

Confirmation title.

confirmationButton string

Confirmation button text.

confirmationDetail string

Confirmation text.

icon string

Icon.

title string

Text of the tooltip.

actionStateEvaluator Action<ActionConfiguration, IDataContainer>

Action used for table action state evaluation per each row.

parameters string[]

Parameter values to be substituted into the URL. Provide the parameters in the same order as they would appear in the URL.

Returns

IList<ActionConfiguration>

Type Parameters

TPage

Adds link action.

public static IList<ActionConfiguration> AddLink<TPage>(this IList<ActionConfiguration> configuration, string label, 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 string

Label.

icon string

Icon.

confirmation string

Confirmation title.

confirmationButton string

Confirmation button text.

title string

Text of the tooltip.

actionStateEvaluator Action<ActionConfiguration, IDataContainer>

Action used for table action state evaluation per each row.

parameters PageParameterValues

Parameter values to be substituted into the URL.

Returns

IList<ActionConfiguration>

Type Parameters

TPage

Adds link action.

[Obsolete("Use AddLink with PageParameterValues instead.")]
[ObsoleteSince(29, 5)]
public static IList<ActionConfiguration> AddLink<TPage>(this IList<ActionConfiguration> configuration, string label, string icon = null, string confirmation = null, string confirmationButton = null, string title = null, Action<ActionConfiguration, IDataContainer> actionStateEvaluator = null, params string[] parameters)

Parameters

configuration IList<ActionConfiguration>

Configuration.

label string

Label.

icon string

Icon.

confirmation string

Confirmation title.

confirmationButton string

Confirmation button text.

title string

Text of the tooltip.

actionStateEvaluator Action<ActionConfiguration, IDataContainer>

Action used for table action state evaluation per each row.

parameters string[]

Parameter values to be substituted into the URL. Provide the parameters in the same order as they would appear in the URL.

Returns

IList<ActionConfiguration>

Type Parameters

TPage