ITopActions interface

The configurations used to define a webpart's top actions.

Properties

topActions

List of top actions configurations

Methods

onExecute(actionName, updatedValue)

Triggered once the top action configuration state has been executed for the specified property path

Property Details

topActions

List of top actions configurations

readonly topActions: ITopActionsField[];

Property Value

Method Details

onExecute(actionName, updatedValue)

Triggered once the top action configuration state has been executed for the specified property path

onExecute(actionName: string, updatedValue: unknown): void;

Parameters

actionName

string

the specified property path that has been altered

updatedValue

unknown

the updated value passed by top actions for the specified actionName

Returns

void