Wicket Wizard gives false information in method isComplete();
问题 in addition to a previous question, I'm trying to do my own implementation of a Wicket Wizard with a step overview. Now the problem is, that isComplete(); seems to return true, even if the step hasn't been finished. I made 3 wizardsteps and then I'm running this code: public class MainWizard extends Wizard{ private static final long serialVersionUID = 1L; private List<IWizardStep> steps = new ArrayList<IWizardStep>(); private Component overview = newOverviewBar("overview"); private