在Webi报表中实现超链接

有两种方式,一种打开一个完整的页面,另一种是打开一个没有地址栏、菜单栏的页面。

(一)打开一个完整的页面

="<a href=\"http://kpiserver:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?sPath=[KPI指标]&sDocName=公式&sReportName=报表1&sType=wid&lsSgongshi="+URLEncode([指标名称])+"&sRefresh=Y&sWindow=New\">"+[指标名称]+"</a>"

(二)打开一个没有地址栏菜单栏的页面。在这里,需要对链接中的中文进行编码转换,否则会报参数不正确的错。

="<a href=\"javascript:void(0)\" nclick=\"javascript:window.open('http://kpiserver:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?sPath="+URLEncode("[KPI指标]")+"&sDocName="+URLEncode("公式")+"&sReportName="+URLEncode("报表1")+"&sType=wid&lsSgongshi="+URLEncode([指标名称])+"&sRefresh=Y','_blank','width=600,height=170');\">"+[指标名称]+"</a>"

 

你可能感兴趣的:(JavaScript,jsp)