Spotfire 7.0 Web Player Javascript API 自定义问题
Spotfire 7.0 Web Player Javascript API customizations issue
使用网络播放器时Javascript API我无法获得要在 Spotfire 7.0 网络播放器上应用的.Customization 属性。
当我在 Spotfire 6.0 Web Player 中使用相同的 html 脚本时,隐藏工具栏和隐藏状态栏的自定义会按预期消失(见下文)。
如有任何建议,我们将不胜感激。
ps。我注意到参数配置块 'SetPage(pageIndex = 2);' 的 .open 参数也无法在我的 7.0 网络播放器中应用,但可以在 6.0 上运行。
<!DOCTYPE html>
<html>
<head>
<title>Dashboard</title>
<script type="text/javascript" src="./GetJavaScriptApi.ashx?Version=6.0"></script>
<script type="text/javascript">
window.onload = function()
{
var wpCustomization = new spotfire.webPlayer.Customization();
wpCustomization.showToolBar = false;
wpCustomization.showStatusBar = false;
webPlayer1 = new spotfire.webPlayer.Application("http://spf2/spotfireweb/", wpCustomization);
webPlayer1.open('/Information Model/Analyses/Operations/Operations Management Dashboard/Dashboard Mockup','Dashboard','SetPage(pageIndex = 2);' );
}
</script>
</head>
<body >
<div id="Dashboard" ></div>
</body>
</html>
请应用最新的修补程序;我认为这已在 HF001 中修复:
TSWP-8143 - Customization settings in javascript mashup code is not applied correctly.
您可以在 http://support.spotfire.com/patches_spotfire.asp#spotfire70
获取修补程序和安装说明
使用网络播放器时Javascript API我无法获得要在 Spotfire 7.0 网络播放器上应用的.Customization 属性。
当我在 Spotfire 6.0 Web Player 中使用相同的 html 脚本时,隐藏工具栏和隐藏状态栏的自定义会按预期消失(见下文)。
如有任何建议,我们将不胜感激。
ps。我注意到参数配置块 'SetPage(pageIndex = 2);' 的 .open 参数也无法在我的 7.0 网络播放器中应用,但可以在 6.0 上运行。
<!DOCTYPE html>
<html>
<head>
<title>Dashboard</title>
<script type="text/javascript" src="./GetJavaScriptApi.ashx?Version=6.0"></script>
<script type="text/javascript">
window.onload = function()
{
var wpCustomization = new spotfire.webPlayer.Customization();
wpCustomization.showToolBar = false;
wpCustomization.showStatusBar = false;
webPlayer1 = new spotfire.webPlayer.Application("http://spf2/spotfireweb/", wpCustomization);
webPlayer1.open('/Information Model/Analyses/Operations/Operations Management Dashboard/Dashboard Mockup','Dashboard','SetPage(pageIndex = 2);' );
}
</script>
</head>
<body >
<div id="Dashboard" ></div>
</body>
</html>
请应用最新的修补程序;我认为这已在 HF001 中修复:
TSWP-8143 - Customization settings in javascript mashup code is not applied correctly.
您可以在 http://support.spotfire.com/patches_spotfire.asp#spotfire70
获取修补程序和安装说明