Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, 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';
}
}
}