Hello again,
I want to use the accordion component from wiquery in my application but the result is very strange, a combination between accordion and tabpane.
See the image for more details.

Any information about this behaviour?
// java code
public class AccordionTestPage extends WebPage {
public AccordionTestPage() {
Accordion accordion = new Accordion("accordion");
accordion.setHeader("a.head");
accordion.setAlwaysOpen(true);
accordion.setAutoHeight(true);
accordion.setFillSpace(true);
add(accordion);
}
}
// html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml"
xmlns:wicket="
http://wicket.sourceforge.net/" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<!--
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css"/>
-->
<link rel="SHORTCUT ICON" href="images/favicon.ico" />
</head>
<body>
<ul class="accordion" wicket:id="accordion">
<li>
Reports <div>Reports...</div>
</li>
<li>
Data Sources <div>Data Sources...</div>
</li>
<li>
Scheduler <div>Scheduler...</div>
</li>
<li>
Security <div>Security...</div>
</li>
</ul>
</body>
</html>
Thanks,
Decebal