I have an ExceptionPage, in which i have a feedback panel, upon runtime
exception MyExceptionPage is getting invoked but the feedback messages are
not getting rendered. Below is what i have coded, could some one please take
a look at it whats wrong?
public class MyExceptionPage extends WebPage{
public MyExceptionPage(RuntimeException e){
Throwable cause = e;
FeedbackPanel feedback = new FeedbackPanel("msgs");
feedback.setOutputMarkupId(true);
add(feedback);
error("UnExpected error occured while processing your request
");
error("Error Cause : " + cause);
System.out.println(feedback.anyErrorMessage());
}
}
Here is my Html Content.
<html>
<body>
<div wicket:id="msgs"></div>
</body>
</html>
--
View this message in context:
http://www.nabble.com/FeedBackPanel-not-rendering-Messages-tp21819008p21819008.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]