Re: [Wicket-user] Two forms in one panel

2006-12-13 Thread bednarz-hannover
Thank you very much, this works perfectly ! Maciej add(new FormFeedbackPanel("feedback", new ContainerFeedbackMessageFilter(form)); that will restrict messages that come only from form's children. > > -igor > > > > On 12/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi all ! > > I

Re: [Wicket-user] Two forms in one panel

2006-12-13 Thread Igor Vaynberg
add(new FormFeedbackPanel("feedback", new ContainerFeedbackMessageFilter(form)); that will restrict messages that come only from form's children. -igor On 12/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi all ! I have a small question regarding the FeedbackPanel component. My situati

[Wicket-user] Two forms in one panel

2006-12-13 Thread bednarz-hannover
Hi all ! I have a small question regarding the FeedbackPanel component. My situation is that I need to place two form within one page. If I do so an add a FeedbackPanel to each forms, any validation message fired from form1 is diplayed twice. Is this a normal behavior or do I have to instantinat