jsfjsf-2primefaces

Display inline pdf file in same page and print it


i have a formatted pdf file, and i want to display it (with the same format) in the jsf page and be able to print it.

please advise how to accomplish that.


Solution

  • Take a look at the p:media tag in showcase

    <p:media value="/resources/other/guide.pdf" width="100%" height="300px">  
        Your browser can't display pdf, 
        <h:outputLink value="/resources/other/guide.pdf">click</h:outputLink> to download pdf instead.  
    </p:media>  
    

    The content of p:media (Your browser ...) will be displayed in case that the browser can't display the pdf for some reason