loadBcmWidget

loadBcmWidget(options)

Loads the BCM widget within an overlay or a popup window.

Parameters

  • options (Object): Configuration options for the widget.
    • data (Object, optional): Custom parameters to be sent with the request.
    • onClose (Function, optional): Callback function executed when the widget is closed.

Example

Tento.loadBcmWidget({
  onClose: function(success) {
    console.log('BCM widget closed:', success);
  }
});