Interface IUiEditableActions
Interface defining actions for an editable UI component.
Namespace: Serenity.Ui.Application.Interfaces.Components
Assembly: Serenity.Ui.Application.dll
Syntax
public interface IUiEditableActions : IComponentActions
Properties
OnEdit
Action to be called when the component is edited.
Declaration
Action<IUiComponent, string> OnEdit { get; set; }
Property Value
| Type | Description |
|---|---|
| Action<IUiComponent, string> | Action that takes an IUiComponent and a string as parameters and returns void. |
OnEndEdition
Action to be called when the component exits edit mode.
Declaration
Action<IUiComponent> OnEndEdition { get; set; }
Property Value
| Type | Description |
|---|---|
| Action<IUiComponent> | Action that takes an IUiComponent as a parameter and returns void. |
OnStartEdition
Action to be called when the component enters edit mode.
Declaration
Action<IUiComponent> OnStartEdition { get; set; }
Property Value
| Type | Description |
|---|---|
| Action<IUiComponent> | Action that takes an IUiComponent as a parameter and returns void. |