Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
PDF Only?
Re: PDF Only?
FBC-Tim,
Try this in the Javascript section of the Form used by the report.
Steven
Try this in the Javascript section of the Form used by the report.
Code: Select all
function nuLoadThis(){
hideButtons(document.body);
}
function hideButtons(node){
for(var i = 0; i < node.childNodes.length; i++){
hideButtons(node.childNodes[i]);
}
if(node.className == 'actionButton'){
var bTitle = node.value;
if(bTitle == 'Print to Screen' || bTitle == 'Email'){
node.style.visibility = 'hidden';
node.style.width = '0px';
}
}
}