RE: Back button doesn't work with AjaxTabbedPanel

2012-09-04 Thread Paul Bors
Subject: Re: Back button doesn't work with AjaxTabbedPanel How do I know when the back button is pressed? On Fri, Aug 31, 2012 at 6:48 PM, Paul Bors p...@bors.ws wrote: Can't you just keep a reference to the backPage and then simply call setResponsePage(backPage)? ~ Thank you, Paul Bors

Re: Back button doesn't work with AjaxTabbedPanel

2012-09-04 Thread Alec Swan
[mailto:alecs...@gmail.com] Sent: Friday, August 31, 2012 7:07 PM To: users@wicket.apache.org Subject: Re: Back button doesn't work with AjaxTabbedPanel So, is there an easy way to support Back button with AjaxTabbedPanel? On Thu, Aug 30, 2012 at 1:04 PM, Alec Swan alecs...@gmail.com wrote: Well

RE: Back button doesn't work with AjaxTabbedPanel

2012-09-04 Thread Paul Bors
[mailto:alecs...@gmail.com] Sent: Tuesday, September 04, 2012 12:49 PM To: users@wicket.apache.org Subject: Re: Back button doesn't work with AjaxTabbedPanel So, my conclusion from this discussion is that TabbedPanel should be used instead of AjaxTabbedPanel if browser Back button needs

Re: Back button doesn't work with AjaxTabbedPanel

2012-09-01 Thread Alec Swan
...@gmail.com] Sent: Friday, August 31, 2012 7:07 PM To: users@wicket.apache.org Subject: Re: Back button doesn't work with AjaxTabbedPanel So, is there an easy way to support Back button with AjaxTabbedPanel? On Thu, Aug 30, 2012 at 1:04 PM, Alec Swan alecs...@gmail.com wrote: Well, I have

Re: Back button doesn't work with AjaxTabbedPanel

2012-08-31 Thread Alec Swan
So, is there an easy way to support Back button with AjaxTabbedPanel? On Thu, Aug 30, 2012 at 1:04 PM, Alec Swan alecs...@gmail.com wrote: Well, I have other ajax interactions and I thought if I could fix Back button for AjaxTabbedPanel I'd be able to fix it for other ajax interactions. On

RE: Back button doesn't work with AjaxTabbedPanel

2012-08-31 Thread Paul Bors
Can't you just keep a reference to the backPage and then simply call setResponsePage(backPage)? ~ Thank you, Paul Bors -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Friday, August 31, 2012 7:07 PM To: users@wicket.apache.org Subject: Re: Back button doesn't work

Back button doesn't work with AjaxTabbedPanel

2012-08-30 Thread Alec Swan
Hello, I am using AjaxTabbedPanel to implement an ajax-swappable menu on the Main page which is mounted with mountBookmarkablePage. For some reason the Back button in the browser does not take the user to the previously selected tab. It takes them out to the page which was shown before user saw

Re: Back button doesn't work with AjaxTabbedPanel

2012-08-30 Thread Sven Meier
Swapping components via Ajax will not change the browser's page history. Thus the Back button works as expected - it takes you to the previous url. Sven On 08/30/2012 07:55 PM, Alec Swan wrote: Hello, I am using AjaxTabbedPanel to implement an ajax-swappable menu on the Main page which is

Re: Back button doesn't work with AjaxTabbedPanel

2012-08-30 Thread Alec Swan
What can I do to allow user to go back to the previously selected tab with a Back button? I tried the following approach but it doesn't seem to work:

Re: Back button doesn't work with AjaxTabbedPanel

2012-08-30 Thread Sven Meier
Silly question: Why don't you use a non-Ajax Tabbedpanel? Sven On 08/30/2012 08:45 PM, Alec Swan wrote: What can I do to allow user to go back to the previously selected tab with a Back button? I tried the following approach but it doesn't seem to work:

Re: Back button doesn't work with AjaxTabbedPanel

2012-08-30 Thread Alec Swan
Well, I have other ajax interactions and I thought if I could fix Back button for AjaxTabbedPanel I'd be able to fix it for other ajax interactions. On Thu, Aug 30, 2012 at 12:51 PM, Sven Meier s...@meiers.net wrote: Silly question: Why don't you use a non-Ajax Tabbedpanel? Sven On