Spotfire 7.0 Web Player Javascript API自定义问题

时间:2015-07-10 18:30:06

标签: spotfire

使用网络播放器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>  

1 个答案:

答案 0 :(得分:1)

请申请最新的修补程序;我认为这已在HF001中修复:

TSWP-8143 - Customization settings in javascript mashup code is not applied correctly.

您可以在http://support.spotfire.com/patches_spotfire.asp#spotfire70

获取修补程序和安装说明