Re: Modal inside a WizardStep

2009-10-09 Thread Jeremy Thomerson
Some very brief pseudo code. Let us know if you need more detail. public MyWizard(IModelFoo model) { setModel(new ModelFoo(model.getObject()); initialize wizard steps - passing them this.getModel() so they all use the same model } make sure to pass all of your wizard steps AND the

Re: Modal inside a WizardStep

2009-10-09 Thread Jeremy Thomerson
I keep wondering, too, what you are doing in the wizard that needs an editing modal popup. Typically, wizards are used for multi-step forms. So to me it's weird to have a wizard that isn't the form - but displays values that you are then editing from a modal. Just curious -- Jeremy

RE: Modal inside a WizardStep

2009-10-09 Thread Jeffrey Schneller
and modal windows. -Original Message- From: Jeremy Thomerson [mailto:jer...@wickettraining.com] Sent: Friday, October 09, 2009 12:37 PM To: users@wicket.apache.org Subject: Re: Modal inside a WizardStep I keep wondering, too, what you are doing in the wizard that needs an editing modal

RE: Modal inside a WizardStep

2009-10-09 Thread Jeremy Thomerson
your UI requirements are. Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: Jeffrey Schneller jeffrey.schnel...@envisa.com Sent: Friday, October 09, 2009 1:49 PM To: users@wicket.apache.org Subject: RE: Modal inside a WizardStep Think