COGNOiSe.com - The IBM Cognos Community

Legacy Business Intelligence => COGNOS ReportNet => Topic started by: kalyan_sekhar1 on 08 Oct 2005 11:54:27 PM

Title: Form Elements value display Problem
Post by: kalyan_sekhar1 on 08 Oct 2005 11:54:27 PM
Hi,

I am having a report in which , i kept Metric Name and Metric ID. Now i kept a HTML element which access the element values in the Report. Here is the code for HTML
----------------------------------------------------
<script language='javascript'>

function clk()
{
alert(document.forms["formWarpRequest"].elements[2].value);
}

</script>

<a href="#" onclick="clk();">Click</a>
----------------------------------------------------

becuase i dont know how to refer with name, i am accessing using elements[2], which is in my case is metric ID. First time its giving fine , but when i close the window and agn access the report its giving null value. But when i save the report and open the report i am getting the value.

Is there any way i can call method from javascript before clicking the link, so that i can access the element value

Thanks
Title: Re: Form Elements value display Problem
Post by: sir_jeroen on 09 Oct 2005 04:29:14 PM
Is this ReportNet or Metrics Manager related?

By the way:
Javascript counts from 0 ... xx and not from 1.. xx. First Element is Element[0]
So elements[2] refers to the 3rd element in your list..
Title: Re: Form Elements value display Problem
Post by: sir_jeroen on 10 Oct 2005 01:45:46 PM
Little reminder: close the topic if it's been solved/closed (see board rules)