Re: [Wicket-user] ajax causes page to expire when 2 browser tabsareopen with bookmarkable pages

2006-11-29 Thread Johan Compagner
in 1.3 this is a bit improved. If you past the url in an existing wicket window. Then it will not only check for the window.name = "" but also if the auto generated wicket name does match If that is not the case then again the redirect will take place. johan On 11/28/06, Igor Vaynberg <[EMAIL P

Re: [Wicket-user] ajax causes page to expire when 2 browser tabsareopen with bookmarkable pages

2006-11-28 Thread Igor Vaynberg
hmm, so it seems like when you paste a url into an already opened window the window.name attribute is not reset back to null. this is rather unfortunate because it is what we use to create an autopagemap. if you are talking about just pasting a url into another window there is no way to create it

Re: [Wicket-user] ajax causes page to expire when 2 browser tabsareopen with bookmarkable pages

2006-11-28 Thread Nili Adoram
If 2 browser tabs are already open and I paste the same URL into both tabs they are both created in the same page map. WebPage.onNewBrowserWindow() hook is never called if the tabs are already open. Thus, after the first is refreshed by Ajax, the second fails to refresh by Ajax. How can I VERIF