openSubtab()
指定された URL (相対または絶対) のコンテンツを表示する新しいサブタブ (主タブ内) を開きます。また、既存のサブタブを上書きすることもできます。主タブの ID を使用して主タブで新しいサブタブを開く場合に使���します。このメソッドは、API バージョン 20.0 以降でのみ使用できます。
タブを開くときにエラーが発生した場合、JavaScript コンソールでエラーコードがレポートされます。
構文
1sforce.console.openSubtab(primaryTabId:String, url:URL, active:Boolean, tabLabel:String, id:String, (optional)callback:Function, (optional)name:String)引数
サンプルコード – Visualforce
1<apex:page standardController="Case">
2
3 <A HREF="#" onClick="testOpenSubtab();return false">
4 Click here to open a new subtab</A>
5
6 <apex:includeScript value="/support/console/22.0/integration.js"/>
7 <script type="text/javascript">
8 function testOpenSubtab() {
9 //First find the ID of the primary tab to put the new subtab in
10 sforce.console.getEnclosingPrimaryTabId(openSubtab);
11 }
12
13 var openSubtab = function openSubtab(result) {
14 //Now that we have the primary tab ID, we can open a new subtab in it
15 var primaryTabId = result.id;
16 sforce.console.openSubtab(primaryTabId , 'http://www.salesforce.com', false,
17 'salesforce', null, openSuccess, 'salesforceSubtab');
18 };
19
20 var openSuccess = function openSuccess(result) {
21 //Report whether we succeeded in opening the subtab
22 if (result.success == true) {
23 alert('subtab successfully opened');
24 } else {
25 alert('subtab cannot be opened');
26 }
27 };
28 </script>
29</apex:page>応答
このメソッドは非同期であるため、コールバックメソッドのオブジェクトで応答を返します。応答オブジェクトには次の項目が含まれます。
| 名前 | 型 | 説明 |
|---|---|---|
| success | boolean | サブタブが正常に開かれた場合は true、サブタブが開かれなかった場合は false。 |
| id | string | サブタブの ID。ID はユーザセッションの間のみ有効です。ユーザが Salesforce コンソールから離れると ID は無効になります。 |