Blame view

samples/schedule-sample/src/main/webapp/pages/menu.xhtml 2.29 KB
bernard authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
<ui:component xmlns="http://www.w3.org/1999/xhtml"
              xmlns:ui="http://java.sun.com/jsf/facelets"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:a4j="http://richfaces.org/a4j"
              xmlns:notify="http://richfaces.org/sandbox/notify">
    <div>
        <h:panelGrid columns="11" style="width:100%;">
            <h:outputLink
                    value="#{facesContext.externalContext.requestContextPath}/pages/index.jsf">Ajax mode
            </h:outputLink>
            <h:outputLink
                    value="#{facesContext.externalContext.requestContextPath}/pages/sample_1.jsf">Server mode
            </h:outputLink>
            <h:outputLink
                    value="#{facesContext.externalContext.requestContextPath}/pages/sample_2.jsf">Client mode
            </h:outputLink>
            <h:outputLink
                    value="#{facesContext.externalContext.requestContextPath}/pages/sample_3.jsf">Customization per view
            </h:outputLink>
            <h:outputLink
                    value="#{facesContext.externalContext.requestContextPath}/pages/sample_4.jsf">Client side callbacks
            </h:outputLink>
            <h:outputLink
                    value="#{facesContext.externalContext.requestContextPath}/pages/sample_5.jsf">Fetch additional data
            </h:outputLink>
            <h:outputLink
                    value="#{facesContext.externalContext.requestContextPath}/pages/sample_6.jsf">With modal panel
            </h:outputLink>
            <h:outputLink
                    value="#{facesContext.externalContext.requestContextPath}/pages/sample_7.jsf">Internationalization
            </h:outputLink>
            <h:outputLink
                    value="#{facesContext.externalContext.requestContextPath}/pages/sample_8.jsf">JavaScript API
            </h:outputLink>
            <h:outputLink
                    value="#{facesContext.externalContext.requestContextPath}/pages/sample_9.jsf">3 in 1
            </h:outputLink>
            <h:outputLink
                    value="#{facesContext.externalContext.requestContextPath}/pages/sample_10.jsf">Ajax ReRender
            </h:outputLink>
        </h:panelGrid>
    </div>
    <notify:notifyMessages id="notifyMessages"/>
</ui:component>