COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => Report Studio => Topic started by: cognostechie on 13 Feb 2011 05:09:46 PM

Title: Javascript - change label of prompt
Post by: cognostechie on 13 Feb 2011 05:09:46 PM
I am using a Select & Search prompt and I need to change the label from 'Choice' to 'Choose'. Pl. see screen attached.

Any help is much appreciated !
Title: Re: Javascript - change label of prompt
Post by: Rajesh_Vanam on 14 Feb 2011 05:29:17 AM
Add following javascript to your header sectionof prompt page.

<script type="text/javascript">
{
      var PMT_UIM_CHOICE = "Choose:";
}

</script>


Regards,
Rajesh Vanam
Title: Re: Javascript - change label of prompt
Post by: cognostechie on 14 Feb 2011 10:21:00 AM
Thank a lot Rajesh !!

It worked perfectly and I appreciate your help !