问问题
75 次
1 回答
1
将此代码放在需要隐藏其详细信息的页面某处的文本区域中:
<SCRIPT>
//hides tabs in lower left-hand corner
navigationBar = $("#id10")
navigationBar.css("display", "none");
//hides table details in lower right-hand corner
bottomDetails = $("#id11")
bottomDetails.css("display", "none");
</SCRIPT>
请注意,使用此代码,您将需要使用新版本的 Spotfire 进行测试。他们过去可以并且已经更改了他们的 div ID。我在 Spotfire 10.3 上使用此代码。这不适用于早期版本(从 7.14 中的 div ID 16 到此)
于 2020-04-20T13:17:22.657 回答