Open Path in the Slider BX24.openPath
We are still updating this page
Some data may be missing here — we will complete it shortly.
The method BX24.openPath opens the specified path within the account in the slider.
Warning
For security reasons, the method does not work in the mobile application.
Note
Starting from version 22.300, it can open SPAs.
Parameters
|
Parameter |
Description |
Available since |
|
path |
The path within the account, which can start with:
|
|
|
callback |
The function is called in 2 cases:
|
Example:
<script src="//api.bitrix24.com/api/v1/"></script>
<script>
BX24.init(
function()
{
BX24.openPath(
'/crm/deal/details/5/',
function(result)
{
console.log(result);
}
);
}
);
</script>
How to Use Examples in Documentation
Copied
Previous
Next