Showing posts with label Report Links. Show all posts
Showing posts with label Report Links. Show all posts

Tuesday, 12 February 2013

Removing/ Deleting Report Links in a Page

Please add the below piece of code in the Text object with HTML check box enabled.

<head>
<script type="text/javascript">
var element1 = document.getElementsByTagName('td');
var count=0;
var classname2 ="ResultLinksCell";
for (var j = 0; j < element1.length; j++)
{
var classes1 = element1[j].className;
if (classes1==classname2)
 {
 count=count+1;
 {
 element1[j].parentNode.removeChild(element1[j]);
 }
 }
}
</script>
</head>

But the '-' will remain and if needed you can move these to the extreme below of the page with my previous blogs enteries.

Comments are always welcome...

Saturday, 16 June 2012

Moving the Report Links

In the OTN forum below-
https://forums.oracle.com/forums/thread.jspa?threadID=2268439&tstart=0
got the requirement that we need to move the report links at the top of the page. So which means if the report is too large then the user doesn't need to scroll to the bottom of the report to download or edit the report.
This gives a feasibility to the users to download the report at the first sight of the page and yes you are going to get a good impression too.
So as my previous post says for editing the Report links-

http://obiee10grevisited.blogspot.in/2012/06/background-color-for-report-links.html

Before the changes-



All we need to do is to use the static text in the dashboard and of course HTML enabled and use the below code in the static text.

<style>.ResultLinksCell { background-color: Red; border-top: white; border-left: Black;
position:relative;
top:-150px;
left:-350px;
}</style>





Result looks good and satisfying. 






Friday, 15 June 2012

Background color for the Report Links

If the user is interested to have a background color to the report links, so that they are highlighted under each of the reports.

Use the below code in a static text with HTML enabled. Of course, you can change the colors. :)

<style>.ResultLinksCell { background-color: Red; border-top: white; border-left: Black;}</style>

Result of the above work-