Back button processing doesn't work in Opera
--------------------------------------------

                 Key: WICKET-869
                 URL: https://issues.apache.org/jira/browse/WICKET-869
             Project: Wicket
          Issue Type: Bug
          Components: wicket
    Affects Versions: 1.3.0-beta2
            Reporter: Andrew Klochkov


Use case:
1) user loads page A
2) he goes to page B
3) he hits back button
4) he clicks an ajax link on the page A, but wicket thinks that page B is 
current
   page because Opera doesn't make any request when back button is presssed

Opera 9.01
wicket 1.3 beta 2

It's happenning when pages extends base class with the following constructors:

public class MyPage extends WebPage
{

        public MyPage() {
                this(null);
        }

        public MyPage(PageParameters params)
        {
                super(params);
        }
        
}

In this case Page.init(final IPageMap pageMap) is never called and 
Page.numericId contains zero for every page instance. 

Quickstart is attached.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to