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>
yep you should use this code
there is no built in option for that even in 8.41