Re: ajax update page in iframe

2013-07-10 Thread haiko
Thanks for your reply Paul. The usecase is that the outer page has options to configure the inner page. On selecting an option in the outer page the inner page should be refreshed so the user can see how it looks. I think the usecase justifies using an iframe on a conceptual level, althoug

Re: ajax update page in iframe

2013-07-08 Thread Paul Bors
Well, have you tried updating the iframe by itself? Use a timer event and see if that works fist. Then try to write the JavaScript which would refresh the iframe from within the parent HTML doc. Now remember, as far as I know those two pages are equivalent of having one user session with the

ajax update page in iframe

2013-07-08 Thread haiko
Hi, I have an unusual construction. I have a main Wicket Page with an InlineFrame ( iframe ) referring to another Wicket Page. Now I want to update by ajax the Page in the InlineFrame on userinput in the main Page. I seem to get a ajax call to the new page with updated data, but the co