COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => Topic started by: tosravan on 28 Aug 2007 10:07:07 AM

Title: Java Script Error: 'document.formWarpRequest._textEditBox_12' is null or not an
Post by: tosravan on 28 Aug 2007 10:07:07 AM
We have Upgraded from MR3 to Cognos 8.2. One of the report has a java script in the prompt page (check box) . Here is the code:

<input type="checkbox" name="assignvalue" onClick="document.formWarpRequest._textEditBox_12.value=getPgmid();
textBox_12.checkData();
"/> Finalize Prompt Values
<script type="text/javascript">
function getPgmid(){
var returnVal="";
if ( document.formWarpRequest._oLstChoices_program1.length > 0 ) {
   for (i=0; i<document.formWarpRequest._oLstChoices_program1.length; i++){
   if (document.formWarpRequest._oLstChoices_program1.options.selected==true)
   {
   returnVal = returnVal + ',' + new String(document.formWarpRequest._oLstChoices_program1.options.value).replace

('.0',''); }
   }
}
if ( returnVal.length > 0 )
{ return returnVal.substring(1,returnVal.length);}
else
{ return "ALL"; }
}
</script>

The same code works fine in MR3. In Cognos 8.2 when the checkbox is selected on the prompt page i get the following error:

Error: 'document.formWarpRequest._textEditBox_12' is null or not an object
Title: Re: Java Script Error: 'document.formWarpRequest._textEditBox_12' is null or not an
Post by: COGNOiSe administrator on 28 Aug 2007 02:17:00 PM
The HTML composition of prompt pages in 8.2 did change, so you will have to rewrite your JavaScript. If you post an entire report specification based on GOSAR we might be able to help you out.
Title: Re: Java Script Error: 'document.formWarpRequest._textEditBox_12' is null or not an
Post by: tosravan on 28 Aug 2007 02:56:10 PM
Thank you very much.

I do not have the GOSLR installed. I may not be able to sent the specs.
Title: Re: Java Script Error: 'document.formWarpRequest._textEditBox_12' is null or not an
Post by: COGNOiSe administrator on 28 Aug 2007 05:04:22 PM
Well, in that case try to search this forum for JavaScript. There is abunch of posts here on how to find, reference and manipulate prompts properly. Maybe they will give you some ideas how to fix your code ...
Title: Re: Java Script Error: 'document.formWarpRequest._textEditBox_12' is null or not an
Post by: COGNOiSe administrator on 28 Aug 2007 05:08:00 PM
For example look at this thread:

http://www.cognoise.com/community/index.php?topic=2329 (http://www.cognoise.com/community/index.php?topic=2329)