0
我是新的jsf和豐富的面孔。我在那裏現場演示,並嘗試創建一個簡單的菜單。但它不起作用。我使用jboss7.1和JSF 2.1 RIC 4.3.4爲什麼我的菜單在RichFaces 4.3.4中不起作用?
menu.xmhtl
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<h:head></h:head>
<h:body>
<ui:composition>
<h:form>
<rich:toolbar height="26px">
<rich:dropDownMenu mode="ajax">
<f:facet name="label">
<h:panelGroup>
<h:outputText value="File" />
</h:panelGroup>
</f:facet>
<rich:menuItem label="hello" action="hello" />
<rich:menuSeparator id="menuSeparator11" />
<rich:menuItem label="Open" action="AddStudent" />
</rich:dropDownMenu>
<rich:dropDownMenu mode="ajax">
<f:facet name="label">
<h:panelGroup>
<h:outputText value="File" />
</h:panelGroup>
</f:facet>
<rich:menuItem label="hello" action="hello" />
<rich:menuItem label="Open" action="AddStudent" />
</rich:dropDownMenu>
</rich:toolbar>
</h:form>
</ui:composition>
</h:body>
</html>
的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>helloRich</display-name>
<welcome-file-list>
<welcome-file>hello.xhtml</welcome-file>
</welcome-file-list>
<context-param>
<description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
<listener>
<listener-class>com.sun.faces.config.ConfigureListener</listener-class>
</listener>
</web-app>
,這些都是我的lib目錄罐子
cssparser-0.9.5.jar
guava-r08.jar
jstl-1.2.jar
richfaces-components-api-4.3.4.Final.jar
richfaces-components-ui-4.3.4.Final.jar
richfaces-core-api-4.3.4.Final.jar
richfaces-core-impl-4.3.4.Final.jar
sac-1.3.jar
我不知道w帽子我是缺少在這裏..任何幫助將是有益的.. 我的輸出
你錯過了''和''標籤。如果你添加它們會發生什麼?猜猜:你沒有加載RF JavaScript文件? –
mabi
沒有m沒有使用任何JavaScript ..只是一個簡單的菜單.. –
Richfaces廣泛使用JavaScript,檢查您的網頁是否加載「packed.js」和「jsf.js」。即使*你*不加載任何(自定義)JavaScript,這些文件都需要存在才能工作。 – mabi