Re: Demystifying page serialization

2010-09-10 Thread J.-F. Rompre
Mike, in reference to your various questions, here is my take: You are not seeing your constructor tracing print statements because it is not invoked more than once (the page object is already in the page store, with its component attached as per the constructor invocation) - all components are

Serialization on objects inherited from a container

2009-09-10 Thread J.-F. Rompre
Hello, I would like to know where I could find documentation on the issue of serializing objects inherited from a component's container as in the example below. I tried looking at the wicket source code to see when this occurs but still don't understand when/how it is done. //... final Product

Re: Stateful vs stateless requests and navigation

2009-06-09 Thread J.-F. Rompre
Thank you Igor - I hadn't turned the logs on. Making the domain serializable fixed the issue. I didn't think this would happen because I am using LoadableDetachable models passed to a list view - probably serializing to produce list items - will see if individual items can be fetched from cache.

Re: How do I reuse a rendered string, i.e. render once and past in multiple locations, e.g. paging nav at top and bottom?

2009-05-29 Thread J.-F. Rompre
via models so the state is reused and does not present overhead. makes sense? -igor On Wed, May 27, 2009 at 5:03 PM, J.-F. Rompre jrom...@gmail.com wrote: OK, thanks Martjin and Jeremy - I think mentioning performance was a mistake on my part..let me try again. I am not trying

How do I reuse a rendered string, i.e. render once and past in multiple locations, e.g. paging nav at top and bottom?

2009-05-27 Thread J.-F. Rompre
I am trying to do something that should be easy to do, and may already be available from the API (I am still usin 1.3.5). How can one duplicate rendered strings? In other words, I am trying to render once but copy a number of times for better performance - e.g., putting a page navigator

Re: How do I reuse a rendered string, i.e. render once and past in multiple locations, e.g. paging nav at top and bottom?

2009-05-27 Thread J.-F. Rompre
analysis that you have done that says that this will reduce your page load time by any significant factor. -- Jeremy Thomerson http://www.wickettraining.com On Wed, May 27, 2009 at 2:53 PM, J.-F. Rompre jrom...@gmail.com wrote: I am trying to do something that should be easy to do