Interface DataFieldWithAction

A piece of data that allows triggering an OData action

The action is tied to a data value which should be rendered as a hyperlink. This is in contrast to DataFieldForAction which is not tied to a specific data value.

interface DataFieldWithAction {
    action: string;
    criticality?: CriticalityType;
    criticalityRepresentation?: CriticalityRepresentationType;
    iconUrl?: URL;
    label?: string;
    value: PrimitiveType;
}

Hierarchy

Properties

action: string

Qualified name of an Action, Function, ActionImport or FunctionImport in scope

criticality?: CriticalityType

Criticality of the data field value

criticalityRepresentation?: CriticalityRepresentationType

Decides if criticality is visualized in addition by means of an icon

iconUrl?: URL

Optional icon

label?: string

A short, human-readable text suitable for labels and captions in UIs

The data field's value

Generated using TypeDoc