Re: How to start Wizard with an active step? / Best practise?

2014-02-18 Thread Patrick Davids
Hi Paul, thanx for your answer. I will have a look at extending it. :-) kind regards Patrick Am 17.02.2014 22:44, schrieb Paul Bors: > We need to build the WizardModel in a dynamic way. Although I think there > is a better more dynamic step too that can be used here. > > So one cheap solution is

Re: How to start Wizard with an active step? / Best practise?

2014-02-17 Thread Paul Bors
We need to build the WizardModel in a dynamic way. Although I think there is a better more dynamic step too that can be used here. So one cheap solution is to keep an enum or some sort of a definition of your wizard steps: public static enum WizStep { /** Step 1 of N */ STEP_ONE(1),

How to start Wizard with an active step? / Best practise?

2014-02-17 Thread Patrick Davids
Hi all, what is the best way to start a Wizard in a particular step? I tried: - to override onInit of WizardStep and setting this to activeStep, when the state is the right one, but init() of WizardModel always determines the next step after me (the current active), so this seems not to be a go