Show User Single Selection Dialog BX24.selectUser
BX24.selectUser(callback: callable): void;
The BX24.selectUser method displays the standard single user selection dialog.
Method Parameters
Required parameters are marked with *
|
Name |
Description |
|
callback* |
Callback function. The
|
Code Example
BX24.selectUser(
function(params)
{
BX('student').value = params.name;
BX('student_external_id').value = params.id;
}
)
How to Use Examples in Documentation
Continue Learning
- Show Multiple User Selection Dialog BX24.selectUsers
- Show Access Permission Selection Dialog BX24.selectAccess
- Call the CRM Entity Selection Dialog BX24.selectCRM
Copied