Wednesday 14 March 2012

Drill on measures using Navigate link

I was searching the OTN found certain useful posts from HM:

https://forums.oracle.com/forums/thread.jspa?threadID=2359730&tstart=0

Refer to couple of links below for similar discussion:
https://forums.oracle.com/forums/thread.jspa?messageID=9623194&#9623194

The Navigate feature can be modified to open targets in a new window by following the below steps:
- Edit OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res\b_mozilla\viewhelper.js
- Search for function NavigateInfo()
- Find the line with code this.sWindowTarget = "_self";
- Replace the line as this.sWindowTarget = "_blank";
- Clear the browser cache and reload the page.

The navigation targets will now open in a new window.

https://forums.oracle.com/forums/thread.jspa?messageID=3337803&#3337803

try writing a custom css and use it for the section/column
{
border: 1px solid #bbb;
height: 600px;
padding: 10px;
font-size: 14px;
target-new:window;

}


Also, came across this workaround during some R&D on this:
Add a static text view to the report and paste the below code (Ensure to check 'Contains HTML Markup' option)
<script>document.body.id = 'idViewPreview'</script>

This does help to open the navigated report in a new window, but not sure of any side effects of using it. You can try and thoroughly test it before actually implementing this in production.
Thanks to All

No comments:

Post a Comment

Thanks to Comment
--Add--