Thanks for your fast reply, but NOW it seems to work with overriding
newFeedbackPanel(String id), no idea why it do not work 15 minutes ago...


Michael O'Cleirigh wrote:
> 
> Hello,
> 
> I think you can just call FeedbackPanel.setFilter(IFeedbackMessageFilter 
> filter) and pass in a filter that will just reject everything like:
> 
> new IFeedbackMessageFilter()
>     {
>         private static final long serialVersionUID = 1L;
> 
>         public boolean accept(FeedbackMessage message)
>         {
>             return false;
>         }
>     };
> 
> Mike
>>
>> Is there any way to remove the default FeedbackPanel from a Wizard? I
>> want
>> to provide my own implementation of FeedbackPanel above the Wizard. I
>> tried
>> to override newFeedbackPanel(String id) and set the visibility to false,
>> but
>> it didn't seem to have an effect.
>>   
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Re%3A-FeedbackPanel-and-Wizard-tp22246740p22247043.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to