Newer Version Available
getSelectedNavigationTab()
Syntax
1sforce.console.getSelectedNavigationTab((optional)callback:Function)Arguments
| Name | Type | Description |
|---|---|---|
| callback | function | JavaScript method that’s called upon completion of the method. |
Sample Code–Visualforce
1swfobject.registerObject("clippy.codeblock-1", "9");
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17<apex:page>
18 <apex:includeScript value="/support/console/31.0/integration.js"/>
19 <script type="text/javascript">
20
21 var callback = function (result) {}
22 if (result.success) {
23 alert('the navigation tab id is ' + result.navigationTabId + ' and navigation url is ' + result.listViewUrl);
24 } else {
25 alert('something is wrong!');
26 }
27 };
28 sforce.console.getSelectedNavigationTab(callback);
29 </script>
30</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 |
|---|---|---|
| navigationTabId | string | The object ID of the selected object. |
| listViewUrl | object | The list view URL of the selected object. |
| label | object | The label of the selected object. |
| selected | boolean | true if returning the selected field of the object was successful, false otherwise. |
| success | boolean | true if returning the object IDs was successful, false otherwise. |