Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
openSubtabByPrimaryTabName()
If there's an error opening the tab, the error code is reported in the JavaScript console.
Syntax
1sforce.console.openSubtabByPrimaryTabName(primaryTabName:String, url:URL, active:Boolean, tabLabel:String, id:String, (optional)callback:Function, (optional)name:String)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
1<apex:page standardController="Case">
2
3 <A HREF="#" onClick="testOpenSubtab();return false">
4 Click here to open a new subtab by primary tab name</A>
5
6 <apex:includeScript value="/support/console/68.0/integration.js"/>
7 <script type="text/javascript">
8 function testOpenSubtabByPrimaryTabName() {
9 //First open a primary tab by name
10 sforce.console.openPrimaryTab(null, 'http://www.yahoo.com', true, 'Yahoo', openSubtab, 'yahoo');
11 }
12
13 var openSubtab = function openSubtab(result) {
14 //Open the subtab by the name specified in function testOpenSubtabByPrimaryTabName()
15 sforce.console.openSubtabByPrimaryTabName('yahoo', 'https://salesforce.com', true,
16 'salesforce', null, openSuccess);
17 };
18
19 var openSuccess = function openSuccess(result) {
20 //Report whether we succeeded in opening the subtab
21 if (result.success == true) {
22 alert('subtab successfully opened');
23 } else {
24 alert('subtab cannot be opened');
25 }
26 };
27 </script>
28</apex:page>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. |