Newer Version Available
focusNavigationTab()
Syntax
1sforce.console.focusNavigationTab((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('success');
24 }
25 else{
26 alert('Something is wrong.');
27 }
28 };
29 sforce.console.focusNavigationTab(callback);
30 </script>
31</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
field:
| Name | Type | Description |
|---|---|---|
| success | boolean | true if returning the object IDs was successful; false otherwise. |