Interface DataFieldForIntentBasedNavigation

Triggers intent-based UI navigation

The navigation intent is is expressed as a Semantic Object and optionally an Action on that object. It is NOT tied to a data value (in contrast to DataFieldWithIntentBasedNavigation).

interface DataFieldForIntentBasedNavigation {
    action: string;
    criticality?: CriticalityType;
    criticalityRepresentation?: CriticalityRepresentationType;
    determining: boolean;
    iconUrl?: URL;
    inline: boolean;
    label?: string;
    mapping: SemanticObjectMappingType[];
    requiresContext: boolean;
    semanticObject: string;
}

Hierarchy

Properties

action: string

Name of the Action on the Semantic Object. If not specified, let user choose which of the available actions to trigger.

criticality?: CriticalityType

Criticality of the data field value

criticalityRepresentation?: CriticalityRepresentationType

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

determining: boolean

Determines whether the action completes a process step (e.g. approve, reject).

iconUrl?: URL

Optional icon

inline: boolean

Action should be placed close to (or even inside) the visualized term

label?: string

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

Maps properties of the annotated entity type to properties of the Semantic Object

requiresContext: boolean

Determines whether a context needs to be passed to the target of this navigation.

semanticObject: string

Name of the Semantic Object

Generated using TypeDoc