Fdc3IntentOptions
Options for configuring FDC3 Intent Behaviour in AdapTable
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| handleIntent | Handles incoming Intents (standard and custom) |
| handleIntentResolution | Handles the IntentResolution that a raised Intent might return |
| listensFor | Subscribe to given standard Intent(s) |
| raises | Raises 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;