Show Access Permission Selection Dialog BX24.selectAccess
If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the MCP server so that the assistant can utilize the official REST documentation.
BX24.selectAccess(value: array, callback: callable): void;
BX24.selectAccess(callback: callable): void;
The function BX24.selectAccess displays a standard access permission selection dialog.
Method Parameters
Required parameters are marked with *
|
Name |
Description |
|
value |
"Blocked" access permissions that should not be selected (non-starting value) |
|
callback* |
Callback function. The
|
Code Example
BX24.selectAccess(
function(params)
{
for (var i in params)
{
let param = params[i];
BX('name' + i).value = param.name;
BX('id' + i).value = param.id;
}
}
)
How to Use Examples in Documentation
Continue Learning
- Show User Single Selection Dialog BX24.selectUser
- Show Multiple User Selection Dialog BX24.selectUsers
- Call the CRM Entity Selection Dialog BX24.selectCRM
Copied