Re: [Wicket-user] How to show PDF file?

2007-06-18 Thread Tishkin, Eugene
Thank you Ernesto. I've found a different solution. Need 2 pages: NoPdfPage and MyPdfPage. 1). When hyperlink for PDF is clicked, onclick event opens a new window, which points to PDF url, e.g. /myapp/MyPdf.go?params_go_here (Extension doesn't matter. Iframes also work, just supply iframe

Re: [Wicket-user] How to show PDF file?

2007-06-13 Thread Ernesto Reinaldo Barreiro
Hi, I had to deal with something similar (not exactly the same problem) and I think you could do the following: 1-Mount a bookmarkable page (mountBookmarkablePage("/mypdf",MyPdfPage.class)); 2-On my MyPdfPage.hmtl have a markup Your browser doesn't support iframes 3- MyPdfPage.j

[Wicket-user] How to show PDF file?

2007-06-13 Thread Tishkin, Eugene
I have a page with links. Each link has to work like this: When it's clicked, it opens popup window and if there is a PDF file it points to - show it in the window, otherwise show a message in the same window. Any ideas are greatly appreciated. Thank you ---