Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
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:
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);
Related information
onclicktoact
onmodechanged
onsizechanged
onpagenavigate
onsendkbarticle
onSessionClosed
onSessionSwitched