On Fri, 13 Feb 2009, Christoph Grün wrote:
> How can I create a custom ComponentFeedbackPanel so that I the html markup
> is customized (without <ul><li>)?

KoolFeedbackPanel.java:
public class KoolFeedbackPanel extends ComponentFeedbackPanel {
    public KoolFeedbackPanel(String id, Component filter) {
        super(id, filter);
    }
}

KoolFeedbackPanel.html:
<html xmlns:wicket>
<body>
<wicket:panel>
  <div wicket:id="feedbackul" class="feedbackPanel">
    <div wicket:id="messages" class="errorlevel">
      <span wicket:id="message" class="errorlevel">A message</span>
    </div>
  </div>
</wicket:panel>
</body>
</html>

Best wishes,
Timo

-- 
Timo Rantalaiho           
Reaktor Innovations Oy    <URL: http://www.ri.fi/ >

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

Reply via email to