简体   繁体   English

从 spotfire 隐藏 IL 名称和列数

[英]Hiding IL name and column count from spotfire

在此处输入图像描述 How to hide the highlighted one (IL name & Column count) from the web player link?如何从 web 播放器链接中隐藏突出显示的一个(IL 名称和列数)?

Edit: This is the DOM i found out from the Developer tools:编辑:这是我从开发者工具中找到的 DOM: 在此处输入图像描述

Throw this code in a text area somewhere on the page whose details you need to hide:将此代码放在需要隐藏其详细信息的页面某处的文本区域中:

<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>

Please note, with this code, you will need to test with new versions of Spotfire.请注意,使用此代码,您将需要使用新版本的 Spotfire 进行测试。 They can and have changed their div IDs in the past.他们过去可以并且已经更改了他们的 div ID。 I'm using this code on Spotfire 10.3.我在 Spotfire 10.3 上使用此代码。 This will not work on earlier versions (went from div ID 16 in 7.14 to this)这不适用于早期版本(从 7.14 中的 div ID 16 到此)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM