1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| <html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:t="http://myfaces.apache.org/tomahawk"
xmlns:f="http://java.sun.com/jsf/core">
...
<h:form>
<t:jscookMenu layout="hbr" theme="ThemeGray">
<t:navigationMenuItem id="nav_2" itemLabel="Example 2">
<h:commandLink action="home" rendered="true" value="Home">
</h:commandLink>
<t:navigationMenuItem id="nav_2_1" itemLabel="Sample 1" action="frmArrete" />
<t:navigationMenuItem id="nav_2_2" itemLabel="Sample 2" action="frmArrete.jsf" />
<t:navigationMenuItem id="nav_2_3" itemLabel="Sample 3" action="#{bArrete.aa}" />
</t:navigationMenuItem>
</t:jscookMenu>
</h:form> |