Re: How to init a Wizard with a particular step?

2014-07-28 Thread Patrick Davids
Hi Sebastien, thanx, I have seen the DynamicWizardModel. Its not exactly, what I need... will help for other reasons, but does not help not to unpack and evaluate my step while constructing. My current implementation (I gave setActiveStep() a new chance) uses an onConfigure() of my Wizard calli

Re: How to init a Wizard with a particular step?

2014-07-28 Thread Sebastien
Hi Patrick, Use a DynamicWizardModel private final IDynamicWizardStep step0; public MyWizard(String id) { super(id); final IWizardModel wizardModel = new DynamicWizardModel(this.step0); /* the start step */ this.init(wizardModel); } You have a complete demo here (using wicket-jquery

How to init a Wizard with a particular step?

2014-07-28 Thread Patrick Davids
Hi all, what I have here is an persistent workflow and I use a wizard to visualize this workflow. On entering my page I wanna push the wizard into a specific step depending on my persistent workflow state/(step). Until now I only was able to achieve this, by manually calling wizardModel.next()