Call the Registered Interface Command BX24.placement.call
Scope:
placement
The method BX24.placement.call invokes a registered interface command.
Parameters
Required parameters are marked with *
|
Name |
Description |
|
command* |
The command to be invoked |
|
parameters |
Parameters to be passed |
|
callback* |
Callback function |
Code Example
How to Use Examples in Documentation
BX24.ready(function () {
BX24.init(function () {
BX24.placement.call('getStatus', {}, function (result) {
console.log(result);
});
BX24.placement.call('CallCardSetCardTitle', {title: 'hello world!'}, function (result) {
console.log(result);
});
});
});
Continue Learning
- Get Information About the Call Context of BX24.placement.info
- Get Information About the JS Interface of the Current Placement BX24.placement.getInterface
- Set Up an Event Handler for the Interface BX24.placement.bindEvent
Copied