On Tue, Jul 7, 2009 at 11:55 AM, fbonsignori<[email protected]> wrote: > > So you are suggesting me that the warning message > > "Component-targetted feedback message was left unrendered. This could be > because you are missing a FeedbackPanel on the page. Message: > [FeedbackMessage message = "Not yet implemented!", reporter = > datasourcebutton, level = ERROR]" > > it's caused by the absence of the ComponentFeedbackPanel proper of the > component producing the feedback message. > That's my code creating the ComponentFeedbackPanel > > dataSourceMessageLabel = new > ComponentFeedbackPanel("datasourcemessagelabel", dataSourceDDC); > > where dataSourceDDC is a DropDownChoice component producing feedback > messages: is that correct?
I'm saying that you are not rendering all feedback messages, because you're using a ComponentFeedbackPanel (which only shows the feedback messages for a specified component). That's what Wicket is telling you. When you put a FeedbackPanel on the page (with no max messages), does it show "Not yet implemented!"? That message is being added by the component with id "datasourcebutton" it looks like. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
