addHandler (JavaScript API Reference) for Dynamics 365 Channel Integration Framework 1.0

Adds the subscriber to the events.

Note

This API can be used on both the widget and Unified Interface page.

Syntax

Microsoft.CIFramework.addHandler(eventName, handlerFunction);

Parameters

Name Type Required Description
eventName String Yes Name of the event for which the handler is set.
The supported events are as follows:
  • onclicktoact: The event is invoked when the outbound communication (ClickToAct) field is enabled.
  • onmodechanged: The event is invoked when the panel mode is manually toggled between Minimized (0) and Docked (1).
  • onsizechanged: The event is invoked when the panel size is manually changed by dragging.
  • onpagenavigate: The event is triggered before a navigation event occurs on the main page.
  • onsendkbarticle: The event is invoked when the user selects the Send button on the KB control.
You can also pass custom events in the eventName parameter.
handlerFunction Function Yes The handler function is invoked when any of the supported events are triggered.

Example

The sample code demonstrates setting the addHandler method for the onmodechanged event.

handlerFunction = function(eventData) {
console.log(eventData)
return Promise.resolve();
}

Microsoft.CIFramework.addHandler("onmodechanged", handlerFunction);

See also

onclicktoact
onmodechanged
onsizechanged
onpagenavigate
onsendkbarticle