Hello,

I'm looking for a tree navigation panel for wicket (1.4). I know the AJAX 
panel, but I'd like to have something that works without JavaScript. After 
consulting the API docs and looking for tree classes, I think to write my own 
navigation tree panel would cost a couple of hours. So is there an easy way to 
get a navigation tree?

What I need looks like this:

The structure 

* root
** FolderA
*** File1
*** File2
*** File3
** FolderB
*** File9
*** File8
** FolderC

should be converted to something like the following html (FolderA elapsed):

<ul>
  <li><a href="...">root</a><br/>
    <li><a href="...">FolderA</a><br/>
       <li><a href="...">File1</a></li>
       <li><a href="...">File2</a></li>
       <li><a href="...">File3</a></li>
    </li>
    <li><a href="...">FolderB</a></li>
    <li><a href="...">FolderC</a></li>
  </li>
</ul>

Thanks for your help!

Christian





---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to