博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何隐藏Cognos Viewer
阅读量:6507 次
发布时间:2019-06-24

本文共 1192 字,大约阅读时间需要 3 分钟。

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>

 

 

 

你可能感兴趣的文章
macports 安装php,「macports」MacOS 中 MacPorts 安装和使用 - 金橙教程网
查看>>
php 审计 for linux,for linux是什么意思
查看>>
matlab里面连接器是什么,Oops - an error has occurred
查看>>
matlab建立桌面图标,在ubuntu16.04上创建matlab的快捷方式(实现方法)
查看>>
smarty使用php代码,笑谈配置,使用Smarty技术_php
查看>>
oracle数据实际值限制,c# – Oracle数据库TNS密钥“数据源”的值长度超过了’128’的限制...
查看>>
silk v3 decoder php,解码转换QQ微信的SILK v3编码音频为MP3或其他格式
查看>>
linux不能访问80端口,lunux开放80端口(本地访问不了linux文件可能是这个原因)...
查看>>
android单位转换小程序,微信小程序中rpx与rem单位转换
查看>>
ps切图教程 android,PS前端切图完整教程
查看>>
html显示服务器状态,显示服务器时间并一直显示(html代码)
查看>>
HTML如何把输入框变成必填值,required输入框为必填项
查看>>
背锅侠逆袭之路
查看>>
演示:使用协议分析器取证IPv6的报文结构
查看>>
oracle 11gr2 rac中的4种IP解说
查看>>
为什么你找不到工作?
查看>>
汇编语言的应用
查看>>
device platform 相应的表
查看>>
php des 加密解密实例
查看>>
【Mac】Mac键盘实现Home, End, Page UP, Page DOWN
查看>>