Re: How to instanciate panels best?

2007-11-23 Thread Icy
this message in context: http://www.nabble.com/How-to-instanciate-panels-best--tf4855189.html#a13909086 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

How to instanciate panels best?

2007-11-22 Thread Icy
somewhere. Kind regards Icy -- View this message in context: http://www.nabble.com/How-to-instanciate-panels-best--tf4855189.html#a13893312 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e

Re: How to instanciate panels best?

2007-11-22 Thread Al Maw
Icy wrote: *** What is the best practise to not instanciate page aggregating panels all the time? *** This isn't really a Wicket question. Your page is slow because doing database/remote operations is slow. It has nothing to do with creating Panels, but everything to do with the database

Re: How to instanciate panels best?

2007-11-22 Thread Icy
efficiently, but if this is how it has to be done using Wicket, I will go that way without thinking I am doing something unelegant. Many thanks, Icy -- View this message in context: http://www.nabble.com/How-to-instanciate-panels-best--tf4855189.html#a13895934 Sent from the Wicket - User mailing

Re: How to instanciate panels best?

2007-11-22 Thread Icy
this to me, it's a very very basic question for me, to understand the magic of the Wicket approach. Kind regards, Icy -- View this message in context: http://www.nabble.com/How-to-instanciate-panels-best--tf4855189.html#a13899931 Sent from the Wicket - User mailing list archive at Nabble.com

Re: How to instanciate panels best?

2007-11-22 Thread Icy
://www.nabble.com/How-to-instanciate-panels-best--tf4855189.html#a13900134 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: How to instanciate panels best?

2007-11-22 Thread Jonathan Locke
regards Icy -- View this message in context: http://www.nabble.com/How-to-instanciate-panels-best--tf4855189.html#a13900949 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

Re: How to instanciate panels best?

2007-11-22 Thread Jonathan Locke
-- View this message in context: http://www.nabble.com/How-to-instanciate-panels-best--tf4855189.html#a13901135 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: How to instanciate panels best?

2007-11-22 Thread Jonathan Locke
regards Icy -- View this message in context: http://www.nabble.com/How-to-instanciate-panels-best--tf4855189.html#a13901466 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e

Re: How to instanciate panels best?

2007-11-22 Thread Eelco Hillenius
MyPanel.java public class MyPanel extends Panel { public MyPanel() { // THIS PANEL IS RECONSTRUCTED ON EACH MyPage REQUEST // BECAUSE MyPageTemplate DOES A new MyPanel... } } What could I do to use the old panel again? Like Al hinted, you should not try to use the old panel