COGNOiSe.com - The IBM Cognos Community

Legacy Business Intelligence => COGNOS ReportNet => Topic started by: otsizh on 08 Feb 2006 09:08:18 AM

Title: [solved]HTML, JavaScript
Post by: otsizh on 08 Feb 2006 09:08:18 AM
Hello,
I am trying to use html item to make my report a little better. I saw Hilighting rows tutorial but I have some problems with Script that have to there. Could somebody explaine howhtml items work? and what script should I use?

thank you all, olha
Title: Re: HTML, JavaScript
Post by: otsizh on 09 Feb 2006 08:16:00 AM
This is what i have to hilight rows(acording to the tutorial) but it looks like i missing simthing because I have no result :(
Thank you for help,
olha

<script>
var x = document.getElementbyTagName("highlight");
for (i=0; i<x.length; i++)
{
var tablerow = x.parentElement.parentElement;
  tablerow.onmouseover = function()
  {
    this.className = "over";
  }
tablerow.onmouseout = function()
  {
    this.className =this.className.replace( "over"," ");
  }
}
</script>
<style>
tr:hover{background-color: red;}, tr.over{background-color: red;}
</style>
Title: Re: HTML, JavaScript
Post by: jolly on 09 Feb 2006 10:13:16 AM
Hi olha,

Put an HTML-Item everywhere to your Report Page Body.

this is the correct Script.

<script>

var x = document.getElementsByTagName("highlight");
for (i = 0 ; i < x.length ; i++)
{
   var tablerow = x.parentElement.parentElement;
   tablerow.onmouseover=function()
      {
         this.className = "over";
      }
               
   tablerow.onmouseout=function()
      {
         this.className = this.className.replace("over", "");
      }

}

</script>
<style>
Ã,  tr:hover, tr.over { background-color: #AEDD65; }
</style>

Paste the above script into the HTML-Item in the Section HTML under HTML Source. Located in the Properties Pane.

Thereafter you MUST insert an HTML-Item to your List. In the properties-Pane under the HTML Source Section you MUST insertÃ,  <highlight/> to the HTML . This is the first entry in the Properties-Pane.

IÃ,´ve attached a simple Listreport with this javascript inside..

Cu jolly

Title: Re: HTML, JavaScript
Post by: otsizh on 09 Feb 2006 12:25:43 PM
hi jolly,
it works, thanks a lot!
How can I use the xml file that you attached?
Title: Re: [solved]HTML, JavaScript
Post by: JGirl on 09 Feb 2006 08:24:39 PM
open the xml file in a text editor.  Select all, and then copy it.

Open report studio (go sales and retailers package), then from the tools menu, choose 'Open Report from Clipboard'

J
Title: Re: [solved]HTML, JavaScript
Post by: jolly on 10 Feb 2006 12:37:42 AM
Hi olha,

Quoteopen the xml file in a text editor.  Select all, and then copy it.

the other way is to save the XML-File to your local system and if you enabled in Report Studio the function "Allow local file access" the you can go to the Menu: File, (Local) open.." and you got the Reportspecification with all the scripts and List and so on in Report Studio.

Cu Jolly
Title: Re: [solved]HTML, JavaScript
Post by: otsizh on 10 Feb 2006 10:05:06 AM
thank you all again,
Wher can I get more information about how to write script for HTML items?
Title: Re: [solved]HTML, JavaScript
Post by: otsizh on 10 Feb 2006 10:27:57 AM
can anybody help me to do the next tutorial? where you pick the item you whant to filter for.
It looks like it is only displaying the result... it does not explayins the steps :(
thanks,
olha