janw wrote: > > Hello, > > I too don't get the navigationMenu to work. > @Rolf: The horizontal navigation works for you? Which myfaces version? > ... >
Yes, it works for me. I use some newer build from http://people.apache.org/builds/myfaces/nightly/ but I do not think that it matters much. There are two issues here, I think: 1.: I changed the original posting such that it works (with the default basic.css from the tomahawk simple examples): http://www.nabble.com/user-files/235993/menu.jsp menu.jsp 2.: However, the real issue is that the included HMenuIEHover.js java script (look at the HTML source to see: <html><head> <script type="text/javascript" src="/panda/faces/myFacesExtensionResource/org.apache.myfaces.renderkit.html.util.MyFacesResourceLoader/11581595/navmenu.htmlnavmenu.HtmlPanelNavigationMenu/HMenuIEHover.js"> ) is limited in that sense, that HMenuIEHover.js (fixing IE issues ...) has a hard-wired reference to "hNav_outer" in it: ... navDivRoot = document.getElementById("myhNav_outer"); So this makes it somewhat harder to come up with your own CSS file ... Since I could not understand or make use of the description at http://myfaces.apache.org/tomahawk/extensionsFilter.html , and since there seem to be issues with ExtensionsFilter anyway (see comments of Michael Lipp, http://issues.apache.org/jira/browse/TOMAHAWK-464 ) it seems much simpler to just add the javascript file in the head section, e.g., <script type="text/javascript" src="javascript/myMenuIEHover.js"> or, for educational purposes, put everything (JavaScript + stylesheet) into the JSP file, like in this simple horizontal menu example which I put together (spending way too much time): http://www.nabble.com/user-files/235995/simplehmenu.jsp simplehmenu.jsp Regards, Rolf Mertig GluonVision GmbH, Berlin, Germany P.s.: I do like MyFaces, but I find it really hard to learn and to use in slightly nontrivial project ... If I find time I'll summarize my findings with simple reproducible examples on the Wiki. -- View this message in context: http://www.nabble.com/Horizontal-Panel-Navigation---panelNavigation2-tf2035583.html#a6288079 Sent from the MyFaces - Users forum at Nabble.com.

