Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Javascript doc for Cognos ReportNet

Status
Not open for further replies.

msnaidu

Programmer
Sep 14, 2004
27
IN
Hi,

Can anyone tell from where I will get the Javascript doc for ReportNet.

Regards,
Meera
 
I need to write Javascript for HTML item in Reportnet for multiselect values .Pls guide me where i will get the list of functions that i can use for writing the Script.

Regards
Meera
 
hi,
I have written the Javascript in Prompt page for Finish button.But i want to control the Finish button action ,means when the Confirm option is given and
> user select YES then the report should get executed
> if user select NO then user should get the prompt page again for selecting the parameters.

i am not able to Cancel the Finish button in prompt page.No matter wht i select in the Confirmation box,the report is getting executed when i click Finish.

Can anyone help??

Regards
Meera
 
hi,
i got the Solution,
where_to = confirm("Do you want to Continue!!!");
if (where_to == true)
{
return true;
}
else
{
SetPromptControl('reprompt');
}

If you Cancel ,this will display the same prompt page with all the values you selected for the parameters
else it will execute the report.

Regards,
Meera
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top