getEnclosingPrimaryTabId()
現在の主タブの ID を返します。このメソッドは主タブまたはサブタブ内で機能します。ナビゲーションタブやカスタムコンソールコンポーネント内では機能しません。このメソッドは、API バージョン 20.0 以降でのみ使用できます。
構文
1sforce.console.getEnclosingPrimaryTabId((optional)callback:function)引数
| 名前 | 型 | 説明 |
|---|---|---|
| callback | function | メソッドの完了時にコールされる JavaScript メソッド。 |
サンプルコード – Visualforce
1<apex:page standardController="Case">
2 <A HREF="#" onClick="testCloseTab();return false">
3 Click here to close this primary tab</A>
4
5 <apex:includeScript value="/support/console/59.0/integration.js"/>
6 <script type="text/javascript">
7 function testCloseTab() {
8 //First find the ID of the current primary tab to close it
9 sforce.console.getEnclosingPrimaryTabId(closeSubtab);
10 }
11
12 var closeSubtab = function closeSubtab(result) {
13 //Now that we have the primary tab ID, we can close it
14 var tabId = result.id;
15 sforce.console.closeTab(tabId);
16 };
17 </script>
18</apex:page>