2012-08-08 66 views
1

我在我的XHTML页面中使用了一些Richfaces标记。但他们被忽略。 Richfaces标记被忽略

它看起来像enter image description here

问题出在哪里?任何想法?

我用Wepshere 8应用服务器

<?xml version="1.0" encoding="ISO-8859-1" ?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<ui:composition 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"> 
<!-- html xmlns="http://www.w3.org/1999/xhtml" 
    xmlns:f="http://java.sun.com/jsf/core" 
    xmlns:h="http://java.sun.com/jsf/html" 
    xmlns:ui="http://java.sun.com/jsf/facelets" 
    xmlns:a4j="http://richfaces.org/a4j" 
    xmlns:rich="http://richfaces.org/rich"> 
<head> 
<title>RichFaces Greeter</title> 
</head> 
<body> 
    <f:view --> 
     <h:form> 
      <rich:panel header="RichFaces Greeter" style="width: 315px"> 
       <h:outputText value="Your name: " /> 
       <h:inputText value="#{user.name}"> 
        <f:validateLength minimum="1" maximum="30" /> 
       </h:inputText> 
       <a4j:commandButton value="Get greeting" reRender="greeting" /> 
       <h:panelGroup id="greeting"> 
        <h:outputText value="Hello, " rendered="#{not empty user.name}" /> 
        <h:outputText value="#{user.name}" /> 
        <h:outputText value="!" rendered="#{not empty user.name}" /> 
       </h:panelGroup> 
      </rich:panel> 
      <rich:inputNumberSlider minValue="1" maxValue="100" showInput="false"/> 
      <rich:inputNumberSpinner minValue="1" maxValue="100"/> 
     </h:form> 
    <!-- /f:view> 
</body> 
</html --> 
</ui:composition> 
+0

请发表您的完整的XHTML代码。基于你的模糊描述,很难猜测问题出在哪里。 – elias 2012-08-08 11:40:48

+0

@eljunior我添加了xhtml代码。 – Kayser 2012-08-08 11:42:37

回答

2

尝试添加H:头和h:body标签页上,而不是普通的HTML标签的头部和身体

+0

XHTML是错误的:-))但是h:head和h:body是最后的解决方案..谢谢 – Kayser 2012-08-08 12:32:33

+0

不用客气.. – 2012-08-08 14:04:19