简体   繁体   中英

Can we use fmap in javascript in obiee?

I want to add a background image to dashboard but by using fmap instead of using analyticsRes. Is it possible to do so? Can any javascript help in that just like it do for analyticsRes?

根据Oracle支持文档1352485.1 –使用Fmap显示自定义图像 ,要使用fmap显示的任何图像都必须位于样式目录下(例如\\ obiee \\ Oracle_BI1 \\ bifoundation \\ web \\ appv2 \\ res \\ s_blafp \\ images)管理服务器目录认为确切位置取决于您所运行的版本。

We can add images to dashboards by two ways.

  1. By using fmap path : In this case the file needs to be placed in OBIEE Presentation Server.
  2. By using a url in tag : tag of html can use both the image placed in OBIEE Presentation Server and also an image from any other web server. For example: Add a text into your dashboard section. Contains HTML Markup check box should be ticked.

Just add below snippet in the text:

<div id="my_logo" style="margin-left: 100px;">
<img src="http://i.stack.imgur.com/dmHl0.png" width=50 height=50></div>

This will add an image from Stack site to your dashboard. In similar way any other image can be added as background image.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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