No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
Newer Version Available
refreshPrimaryTabById()
Usage
Refreshes a primary tab specified by ID, including its subtabs. This method can't refresh subtabs with URLs to external pages or Visualforce pages. This method is only available in API version 22.0 or later.
Note that this method doesn't refresh sidebars or custom console components. For more information, see Custom Console Components Overview in the Salesforce online help.
Syntax
1sforce.console.refreshPrimaryTabById(id:String, active:Boolean, (optional)callback:Function)Arguments
| Name | Type | Description |
|---|---|---|
| id | string | ID of the primary tab to refresh. |
| active | boolean | If true, the refreshed primary tab displays immediately. If false, the refreshed primary tab displays in the background. |
| callback | function | JavaScript method called upon completion of the method. |
Sample Code–Visualforce
1swfobject.registerObject("clippy.codeblock-1", "9");<apex:page standardController="Case">
2
3 <A HREF="#" onClick="testRefreshPrimaryTabById();return false">
4 Click here to refresh a primary tab by id</A>
5
6 <apex:includeScript value="/support/console/22.0/integration.js"/>
7 <script type="text/javascript">
8 function testRefreshPrimaryTabById() {
9 //Get the value for 'scc-pt-0' from the openPrimaryTab method
10 //This value is for example purposes only
11 var primaryTabId = 'scc-pt-0';
12 sforce.console.refreshPrimaryTabById(primaryTabId, true, refreshSuccess);
13 }
14
15 var refreshSuccess = function refreshSuccess(result) {
16 //Report whether refreshing the primary tab was successful
17 if (result.success == true) {
18 alert('Primary tab refreshed successfully');
19 } else {
20 alert('Primary did not refresh');
21 }
22 };
23
24 </script>
25
26</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 the primary tab refreshed successfully; false if the primary tab didn't refresh. |