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]