Re: [Howto] WizardStep communication ?

2008-03-19 Thread Johan Compagner
obably also be passing an IModel into the > > constructor of each step, as well... Not the actual object. > > > > Hope this helps. > > > > Jeremy Thomerson > > -- sent from a wireless device > > > > > > -Original Message- > > From:

Re: [Howto] WizardStep communication ?

2008-03-19 Thread Igor Vaynberg
ot the actual object. > > > > Hope this helps. > > > > Jeremy Thomerson > > -- sent from a wireless device > > > > > > -Original Message- > > From: "smallufo" <[EMAIL PROTECTED]> > > To: users@wicket.apa

Re: [Howto] WizardStep communication ?

2008-03-19 Thread smallufo
s much as you can > about models. You should probably also be passing an IModel into the > constructor of each step, as well... Not the actual object. > > Hope this helps. > > Jeremy Thomerson > -- sent from a wireless device > > > -Original Message- > Fro

RE: [Howto] WizardStep communication ?

2008-03-13 Thread Jeremy Thomerson
o" <[EMAIL PROTECTED]> To: users@wicket.apache.org Sent: 3/13/08 9:10 AM Subject: [Howto] WizardStep communication ? This is my Wizard and steps : MyObj myObj = new MyObj(); // build MyObj with default Time / Location WizardModel model = new WizardModel(); model.add(new TimeStep(myObj)); mo

[Howto] WizardStep communication ?

2008-03-13 Thread smallufo
This is my Wizard and steps : MyObj myObj = new MyObj(); // build MyObj with default Time / Location WizardModel model = new WizardModel(); model.add(new TimeStep(myObj)); model.add(new LocationStep(myObj)); model.add(new ConfirmStep(myObj)); init(model); MyObj is just a class containing time / l