IBI-helpMe

ibihelpme_DeliveryTypeChangedEvent

Signature

ibihelpme_DeliveryTypeChangedEvent: (type: string) => void

Description

Is called when the set delivery type has changed

Available from API version

1.0.0

Parameter

Name

Type

Description

type

string

Includes the new delivery type.

Return value

No return value

Example

JavaScript
window.ibihelpme_DeliveryTypeChangedEvent = function(type)
{
	if(type === 'MAPI')
		setupMapiUi();
	else
		setupDefaultUi();
}