Fdc3IntentOptions

Options for configuring FDC3 Intent Behaviour in AdapTable

TypeScript
export interface

Properties

PropertyDescription
handleIntentHandles incoming Intents (standard and custom)
handleIntentResolutionHandles the IntentResolution that a raised Intent might return
listensForSubscribe to given standard Intent(s)
raisesRaises given standard Intent(s) on various Grid Actions

Property Details

handleIntent

Handles incoming Intents (standard and custom)

TypeScript
handleIntent?: (context: HandleFdc3IntentContext) => Promise<IntentResult> | void;
Property Value

(context:HandleFdc3IntentContext) => Promise<IntentResult> | void

handleIntentResolution

Handles the IntentResolution that a raised Intent might return

TypeScript
handleIntentResolution?: (context: HandleFdc3IntentResolutionContext) => Promise<void>;
Property Value

(context:HandleFdc3IntentResolutionContext) => Promise<void>

listensFor

Subscribe to given standard Intent(s)

TypeScript
listensFor?: Intent[];
Property Value

Intent[]

raises

Raises given standard Intent(s) on various Grid Actions

TypeScript
raises?: RaiseIntentConfiguration;
Property Value

RaiseIntentConfiguration