Re: custom (non wicket) modal dialog. Problem with urls.

2011-08-11 Thread brazz
Problem is solved now: i extract the application-relative-path with: String path = Strings.stripJSessionId(request.getRequestURI()); the trick is to overwrite method onComponentTag(ComponentTag tag) of class ResourceLink and prepend the application -relative path so i end up with e.g.:

Re: custom (non wicket) modal dialog. Problem with urls.

2011-08-10 Thread brazz
One step further. My original assumption was wrong. It is a problem with iframes and the configuration of our firewall. But the situation hasn't improved. The url of the link is:

Re: custom (non wicket) modal dialog. Problem with urls.

2011-08-09 Thread brazz
Hi, thank you very much for your answer. It's correct till number 3. The link in the modal dialog has to be a resourcelink, which loads a pdf document from the server. I cannot use an external link because there is a firewall between user and document server (therefore i have to open an

Re: custom (non wicket) modal dialog. Problem with urls.

2011-08-08 Thread Andrea Del Bene
Hi, I'm not sure I have fully understood your situation. You should have: 1- a page which opens a modal dialog via Javascript 2- another page which is rendered inside modal dialog 3- in this last page (the one inside modal window) you want a link to the page in background (the starting page)