Hi all,I'm a novice Grails Programmer.I have 2 use case :
render image file show on GSP Page.
render PDF file and show on PDF Viewer integrate with GSP Page.
Can anyone provide examples of how to do this?
Hi all,I'm a novice Grails Programmer.I have 2 use case :
render image file show on GSP Page.
render PDF file and show on PDF Viewer integrate with GSP Page.
Can anyone provide examples of how to do this?
Please provide some more details for your actions but roughly I suspect you might want the following:
<img src="${createLinkTo(dir: 'images', file: '1.jpg')}" alt="Image"/>
I don't know of any PDF viewers that could be integrated with an HTML page let alone a one that would be specific to grails. Your best bet is to redirect people to the PDF file and let their own browser handle the file.