Fdc3IntentOptions
Options for configuring FDC3 Intent Behaviour in AdapTable
TypeScript
export interfaceProperties
| Property | Type | Description |
|---|---|---|
| handleIntent | (context:HandleFdc3IntentContext) => Promise<IntentResult> | void | Handles incoming Intents (standard and custom) |
| handleIntentResolution | (context:HandleFdc3IntentResolutionContext) => Promise<void> | Handles the IntentResolution that a raised Intent might return |
| listensFor | Intent[] | Subscribe to given standard Intent(s) |
| raises | RaiseIntentConfiguration | 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;