function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AsymtekAsymtek 

Detail Page Button - Download Document - How to control display

My goal is to allow the User to download or display a simple PDF file stored in SF Documents folder to reference while they are entering products on quote line items or the opportunity line items. So it needs to reside or stay open on the page while they enter products. Like a pop-up I guess.

 

So I created a custom button with the link to the document https://na6.salesforce.com/servlet/servlet.FileDownload?file=01580000000zkMY. Now I want to control how it is displayed

 

After all my review of pop up windows and the like, it looks like my answer is javascript but I don't know how to do it.  Can anyone help?

Pradeep_NavatarPradeep_Navatar

You can do this using java script. Use OnClickJavascript event when you create the button and then use the following line:

 

Window. open(url,size,…);

 

From here you can control your page

Debbie@AsymtekDebbie@Asymtek

Pradeep,

 

You sent me down the right path!  Thank you!  I don't know Java at all. Very green. But........

 

I ended up with the statement below but I can't seem to find the code that makes the window stay on top. When the User clicks on the Salesforce screen to enter their products, I don't want the window to disappear.

 

 

window.open("https://na6.salesforce.com/servlet/servlet.FileDownload?file=01580000000zkMY","_blank","toolbar=no, location=yes, directories=no, status=no, scrollbars=yes, resizable=no, copyhistory=yes, width=1200, height=300");