Re: [Howto] WizardStep communication ?

2008-03-19 Thread Johan Compagner
https://issues.apache.org/jira/browse/WICKET-1327 On Wed, Mar 19, 2008 at 10:31 PM, smallufo <[EMAIL PROTECTED]> wrote: > Thank you , but it seems that PropertyModel is not refactory-friendly > Is there any better way to achieve this ? > Thank you very much. > > > 2008/3/14, Jeremy Thomerson <[EM

Re: [Howto] WizardStep communication ?

2008-03-19 Thread Igor Vaynberg
chain your models manually instead of using a propertymodel, you can achieve the same result as long as instead of keeping a reference to the object you keep a reference to the model and retrieve the object when needed. -igor On Wed, Mar 19, 2008 at 2:31 PM, smallufo <[EMAIL PROTECTED]> wrote: >

Re: [Howto] WizardStep communication ?

2008-03-19 Thread smallufo
Thank you , but it seems that PropertyModel is not refactory-friendly Is there any better way to achieve this ? Thank you very much. 2008/3/14, Jeremy Thomerson <[EMAIL PROTECTED]>: > > Show us the code from your ConfirmStep. My guess is that you're not > familiar with the need for models yet.

RE: [Howto] WizardStep communication ?

2008-03-13 Thread Jeremy Thomerson
Show us the code from your ConfirmStep. My guess is that you're not familiar with the need for models yet. For instance, my guess would be that you're doing this: public ConfirmStep(MyObj obj) { add(new Label("time", obj.getTime())); add(new Label("location", obj.getLocation())); } If yo