Re: Within the wicket lifecyle, what is the best place to add a call on the page request

2010-09-02 Thread Ben Tilford
If your using wicket 1.4.10 you may want to look at the new onConfigure method that was added. On Thu, Sep 2, 2010 at 3:38 PM, Brown, Berlin [GCG-PFS] berlin.br...@primerica.com wrote: Where is the best place to add logic to get invoked always when the page is requested? The logic may or

Re: Within the wicket lifecyle, what is the best place to add a call on the page request

2010-09-02 Thread Avraham Rosenzweig
Or you can override onBeforeRender as we used to do before 1.4.10 :-) Just don't forget to call super.onBeforeRender(). On Fri, Sep 3, 2010 at 12:10 AM, Ben Tilford [via Apache Wicket] ml-node+2524782-1377046621-117...@n4.nabble.comml-node%2b2524782-1377046621-117...@n4.nabble.com wrote: If