setMode (JavaScript API Reference) for Dynamics 365 Channel Integration Framework 2.0
Sets the state of the panel.
Syntax
Microsoft.CIFramework.setMode(value).then(successCallback, errorCallback);
Parameters
Name | Type | Required | Description | ||||
---|---|---|---|---|---|---|---|
value | Number | Yes | The value to set the mode of the panel.
|
||||
successCallback | Function | No | A function to call when the request for setting the panel state is successful. | ||||
errorCallback | Function | No | A function to call when the request for setting the panel state fails. |
Return value
Returns a promise object with a value.
Example
// Setting Panel to minimize mode.
Microsoft.CIFramework.setMode(0).then(
function (result) {
// result will have current state of the panel.
console.log(result)
},
function (error) {
// code handling for promise failure
console.log(error)
});