Forum Message UI Improvement (Thesis Board #3470) #61
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns:wicket="http://wicket.apache.org">
|
||||
<head>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<wicket:panel>
|
||||
<span wicket:id="msgCount"></span>
|
||||
</wicket:panel>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,13 @@
|
||||
package se.su.dsv.scipro.forum.panels;
|
||||
|
||||
import org.apache.wicket.markup.html.basic.Label;
|
||||
import org.apache.wicket.markup.html.panel.Panel;
|
||||
|
||||
public class NumberOfMessagesPanel extends Panel {
|
||||
|
||||
public NumberOfMessagesPanel(final String id) {
|
||||
super(id);
|
||||
|
||||
add(new Label("msgCount", " (0)"));
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user