如何隐藏Cognos Viewer

简介:

BI项目很多时候需要跟Portal做集成,可以将整个BI Portal放到企业门户或者只是存放一些固定的报表。由于Cognos默认运行会带出Cognos Viewer,这样就跟门户不太协调。

有几种办法可以解决这个问题:

1.修改系统XML之间因此Cognos View

2. 修改URL的行为比如

Copy the url of the report (go to Cognos connection-> go to the folder
location of report-> right click on the selected report you want to run-> 
copy shortcut) then paste this url in the new window and at the end of this 
url type *&cv.header=false&cv.toolbar=false*

3. 在报表中使用HTML代码。下面是HTML代码:

10.1中测试成功的:

<style>

#headerBack

{

   display: none;

}

.mainHeader1

{

   display: none;

}

 .mainViewerHeader3

{

   display: none;

}

</style>

10之前的版本:

--Hide cognos viewer

<style>

.topRow

{

display:none;

}

</style>

--Hide cognos viewer

<script>

document.getElementById('CVHeader_NS_').style.display = "none";

document.getElementById('CVToolbar_NS_').style.display = "none";

if(document.getElementById('CVNavLinks_NS_')) {

document.getElementById('CVNavLinks_NS_').style.display = "none";

}

</script>

<script type="text/JavaScript">

window.onload = function()

{

if (document.getElementById("cbarCVToolbar_NS_"))

{

document.getElementById("cbarCVToolbar_NS_").style.displ

ay = 'none';

document.getElementById("CVHeader_NS_").style.display='n

one';

}

}

</script>

 

本文转自 lzf328 51CTO博客,原文链接:http://blog.51cto.com/lzf328/1243721

相关文章
|
8月前
|
iOS开发
Xcode强大的多视图立体分层显示View UI Herarchy
Xcode强大的多视图立体分层显示View UI Herarchy
66 0
|
调度 Windows C#
理解 UWP 视图的概念,让 UWP 应用显示多个窗口(多视图)
原文 理解 UWP 视图的概念,让 UWP 应用显示多个窗口(多视图) UWP 应用多是一个窗口完成所有业务的,事实上我也推荐使用这种单一窗口的方式。不过,总有一些特别的情况下我们需要用到不止一个窗口,那么 UWP 中如何使用多窗口呢? 本文内容 为什么 UWP 需要多窗口? UWP 视图的概念 UWP 多窗口 管理多个 UWP 视图 参考资料 为什么 UWP 需要多窗口? 多窗口在传统 Win32 的开发当中是司空见惯的事儿了,不过我个人非常不喜欢,因为 Windows 系统上的多窗口太多坑。
1656 0
|
存储 数据库
Confluence 6 数据库表-展现(Appearance)
这部分存储了有关你 Confluence 的外观和布局使用的信息。 decorator 使用自定义 Velocity 布局显示的自定义模板。
848 0