Newer Version Available
openSubtabByPrimaryTabName()
If there's an error opening the tab, the error code is reported in the JavaScript console.
Syntax
Arguments
| Name | Type | Description |
|---|---|---|
| primaryTabName | string | Name of the primary tab in which the subtab opened. |
| url | URL | URL of the opened subtab. If the URL is to a Salesforce object, that object displays as specified in the Salesforce console app settings. For example, if cases are set to open as a primary tab, and openSubtab() is called on a case, the case opens as a primary tab. Users can open an external URL if it’s been added to the console’s allowlist. |
| active | boolean | If true, the opened subtab displays immediately. If false, the opened subtab displays in the background and the current tab maintains focus. |
| tabLabel | string | Optional label of the opened subtab. If a label isn't specified,
External Page displays. Add labels as text; HTML isn't supported. |
| id | string | ID of the subtab to override. Use null to create a new subtab. |
| callback | function | JavaScript method called upon completion of the method. |
| name | string | Optional name of the opened subtab. This argument is only available in API version 22.0 and later. |
Sample Code–Visualforce
Response
This method is asynchronous so it returns its response in an object in a callback method. The response object contains the following fields:
| Name | Type | Description |
|---|---|---|
| success | boolean | true if the subtab successfully opened; false if the subtab didn't open. |
| id | string | ID of the subtab. IDs are only valid during a user session; IDs become invalid when the user leaves the Salesforce console. |