0

设置:

我们正在使用 S 控件覆盖选项卡。S-Control 发布一个表单以打开一个嵌入在 SF 窗口中的新链接 - 带有标题和侧边栏。我需要的是在带有 SF 标题和侧边栏的新窗口中打开该窗口。

有人可以建议吗?

谢谢达斯菜鸟!

<html> 
<head> 

<script type="text/javascript"> 
var prodURL = "https://blah"; 

function postwith (to, params) { 
var myForm = document.createElement("form"); 
myForm.method = "post"; 
myForm.target = "_self"; 
myForm.action = to; 

for (var p in params) { 
var myInput = document.createElement("input"); 
myInput.setAttribute("name", p); 
myInput.setAttribute("value", params[p]); 
myInput.setAttribute("type", "hidden"); 
myForm.appendChild(myInput); 
} 

document.body.appendChild(myForm); 
myForm.submit(); 

} 
</script> 

<style type="text/css"> 
#overlayPageLoad { 
background: none repeat scroll 0 0 white; 
height: 100% !important; 
left: 0; 
position: absolute; 
text-align: center; 
top: 0; 
width: 100% !important; 
} 
#overlayPageLoad .middle { 
color: #888888; 
font-size: 16px; 
left: 0; 
position: absolute; 
top: 50%; 
width: 100%; 
} 
</style> 

</head> 

<body onload= "postwith(prodURL, {SF_SESSION:'{!$Api.Session_ID}',SF_ENDPOINT:'{!$Api.Partner_Server_URL_120}'})"; > 

<div id="overlayPageLoad"> 
<span class="middle"> 
<img src="https://prettypicture"> 
&nbsp;Connecting... 
</span> 
</div> 

</body> 
</html>
4

1 回答 1

0

我的方法:

  1. 创建一个新的Visualforce 选项卡
  2. 为选项卡选择 Visualforce 页面(您的 S-Controll 页面)
  3. 保存选项卡

现在,如果用户单击选项卡,他将重定向到您的页面。它看起来像这样:单击选项卡 -> S-Control 页面打开 -> 在 S-Control 页面中运行一个 javascript 代码,该代码在弹出窗口中打开另一个页面。

在您的 S-Controll 页面中添加一些 JavaScript 以打开一个弹出窗口:

<!-- language: lang-js -->
    var height = 300;
    var width = 500;
    var windowCenter1 = (screen.height - height) / 2;
    var windowCenter2 = (screen.width - width) / 2;
    var windowFeatures = 'height=' + height + ',width=' + width +
                         ',toolbar=0,scrollbars=1,status=0' + 
                         ',resizable=0,location=0,menuBar=0';

    newPopup = open("/apex/youPopUpPage","myPopup", windowFeatures+',left=' + windowCenter2 +',top=' + windowCenter1);
    newPopup.focus();
于 2012-08-17T12:17:32.283 回答