If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

Hide Select All Under List Prompt

Started by wandan, 16 Aug 2010 02:53:13 PM

Previous topic - Next topic

wandan

Hello,

I found the below code that will hide both the "Select All" and "Deselect All" options. I need to be able to hide "Select All" but leave the "Deselect All" option available.  Is there a way to do this in 8.4?  And, I need a way to apply it to only certain prompts on a prompt page.

<SCRIPT LANGUAGE="JavaScript">
//hiding select all
for (j=0;j<document.links.length;j++)
{
y=document.links[j];
if (y.id.indexOf("SELECT") !=-1)
document.getElementById(y.id).style.display='None';
}
</script>

koharish

yep you should use this code

there is no built in option for that even in 8.41