Re: [Wicket-user] ComponentFeedbackPanel and EqualPasswordInputValidator

2007-06-05 Thread JulianS
Jonathan Locke wrote: > > > ComponentFeedbackPanel will only ever show error messages reported by the > given component: > > public boolean accept(FeedbackMessage message) > { > return component == message.getReporter(); > } > > If you want to show validation

Re: [Wicket-user] ComponentFeedbackPanel and EqualPasswordInputValidator

2007-06-04 Thread Jonathan Locke
ComponentFeedbackPanel will only ever show error messages reported by the given component: public boolean accept(FeedbackMessage message) { return component == message.getReporter(); } If you want to show validation errors for a form when there are multip

[Wicket-user] ComponentFeedbackPanel and EqualPasswordInputValidator

2007-06-04 Thread JulianS
I can have more than one form on my page and I want the error messages to appear above the relevant form. However, I can't make it work--no error output is displayed. Is there a way to have the output from EqualPasswordInputValidator be filtered by ComponentFeedbackPanel? form.add(new ComponentF