Class ActionConfigurationExtensions
Contains extension methods for action configuration.
public static class ActionConfigurationExtensions
- Inheritance
-
objectActionConfigurationExtensions
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
IActionComponentName of the component to be used. This name is connected with suffix "Component" when loading corresponding frontend component.
label
stringAction label.
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>
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
stringLabel.
command
stringCommand name.
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, 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
stringLabel.
command
stringCommand name.
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>
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
stringLabel.
confirmation
stringConfirmation title.
confirmationButton
stringConfirmation button text.
confirmationDetail
stringConfirmation text.
icon
stringIcon.
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
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
stringLabel.
confirmation
stringConfirmation title.
confirmationButton
stringConfirmation button text.
confirmationDetail
stringConfirmation text.
icon
stringIcon.
title
stringText 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
AddLink<TPage>(IList<ActionConfiguration>, string, string, string, string, string, Action<ActionConfiguration, IDataContainer>, PageParameterValues)
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
stringLabel.
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
AddLink<TPage>(IList<ActionConfiguration>, string, string, string, string, string, Action<ActionConfiguration, IDataContainer>, params string[])
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
stringLabel.
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
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