Interface IUiSelectableActions
Interface defining actions for a selectable UI component.
Inherited Members
Namespace: Serenity.Ui.Application.Interfaces.Components
Assembly: Serenity.Ui.Application.dll
Syntax
public interface IUiSelectableActions : IUiInteractableActions, IUiComponentActions, IComponentActions
Properties
OnSelectableValuesChange
Occurs when the available selectable values change.
Declaration
Action<IUiComponent, ConfigurationEntry[]> OnSelectableValuesChange { get; set; }
Property Value
| Type | Description |
|---|---|
| Action<IUiComponent, ConfigurationEntry[]> | The action to be performed when the selectable values change. |
OnValueChange
Occurs when the value of the selectable component changes.
Declaration
Action<IUiComponent, int> OnValueChange { get; set; }
Property Value
| Type | Description |
|---|---|
| Action<IUiComponent, int> | The action to be performed when the value changes. |