Re: Where to process PageParameters

2009-01-15 Thread Jonas Hoepfner
Ok, I'll use the onBeforeRender() method. I just found the corresponding section in "Wicket in Action". Thank you. Jonas - Original Message - From: Jeremy Thomerson [mailto:jer...@wickettraining.com] To: users@wicket.apache.org Sent: Wed, 14 Jan 2009 20:36:22 +0100 Subject: Re: Where to

Re: Where to process PageParameters

2009-01-14 Thread Jonas Hoepfner
Thank you for the quick reply. It's already working fine, I was just wondering if it is best practice to call business logik from the constructor: public PageB(PageParameters p) { // can throw an exception: DataSet result = callMyBusinessLogik(p.getString("param1"), p.getString("param2"));