PDF Only?
Posted: Thu Aug 11, 2011 7:41 am
Is it possible to turn off the "Print to Screen" and "Email" buttons so the only options available to the user are "Print to PDF" and "Email PDF"?
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';
}
}
}