Re: [Wicket-user] What's the best way of doing menus in Wicket?

2007-03-12 Thread Alex Objelean
I think, that it would be a great idea to have a project contribution based on jQuery js framework with a possibility to extend easily widgets (jQuery plugins).. similar to wicket-contrib-yui. Alex ZedroS Schwart wrote: Would it be possible to have such a menu directly among wicket's

Re: [Wicket-user] What's the best way of doing menus in Wicket?

2007-03-11 Thread ZedroS Schwart
Would it be possible to have such a menu directly among wicket's components ? It would be great ! ZedroS - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance

Re: [Wicket-user] What's the best way of doing menus in Wicket?

2007-03-10 Thread Alex Objelean
The nice part about wicket is that it does not limit your presentation skills. Regarding menu, the best menu for me by now is a jQuery plugin wrote by Jonathan Sharp: http://jdsharp.us/code/jQuery/plugins/jdMenu . It uses a simple ul-li markup, supports unlimited levels and is completely

Re: [Wicket-user] What's the best way of doing menus in Wicket?

2007-03-09 Thread Thomas R. Corbin
On Friday, 09 March 2007 04:18 am, Ryan Holmes escreveu: MyGosuMenu is worth a look. It's a stagnant project, but it's simple, fast and still has good cross-browser support (although I probably wouldn't use it for a public site). Here's an example of the standard drop down menu:

Re: [Wicket-user] What's the best way of doing menus in Wicket?

2007-03-08 Thread Robert Novotny
I have tried to use dropdown menu in one of my projects. NavMenu has been broken in that time (and I didn't figure out how to patch it) and my effort in integrating TigraMenu wasn't succesfull either. Finally I have used the approach which uses a pure CSS menu which is based on the :hover class.

Re: [Wicket-user] What's the best way of doing menus in Wicket?

2007-03-08 Thread Jonathan Locke
I know this is very low-tech, but I just arrange my links into a nav-looking structure. Since they will auto-disable if they link to self (same page), they form a kind of menu where you can see where you are. This has been good enough for most of what I do, without hardly any coding (as a

Re: [Wicket-user] What's the best way of doing menus in Wicket?

2007-03-08 Thread Thomas R. Corbin
On Thursday, 08 March 2007 01:23 am, Eelco Hillenius escreveu: The big question there is whether you know all items beforehand or not. If yes, integrating with any javascript library is easy. If not, you need a tree, and probably can best look at that component or navmenu

[Wicket-user] What's the best way of doing menus in Wicket?

2007-03-07 Thread Thomas R. Corbin
We need a menu bar across the top of our pages, with pull down menus. We used to use this stuff: http://struts-menu.sf.net but I'm not sure how to integrate it, since it seems to rely on jsp tags. Thanks. - Take Surveys.

Re: [Wicket-user] What's the best way of doing menus in Wicket?

2007-03-07 Thread Eelco Hillenius
The big question there is whether you know all items beforehand or not. If yes, integrating with any javascript library is easy. If not, you need a tree, and probably can best look at that component or navmenu