好的,我已经阅读了有关此问题的所有帖子,但我找不到它。我的情况非常简单 - 我所做的就是使用Primefaces 3.3.1和JSF 2.1来呈现登录页面。这是代码:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.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:p="http://primefaces.org/ui"
xmlns:pe="http://primefaces.org/ui/extensions"
xmlns:ui="http://java.sun.com/jsf/facelets">
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>ACME Systems - Home Page</title>
<style>
.noBorders tr, .noBorders td {
background: none !important;
border: none !important;
}
</style>
</h:head>
<h:body>
<p:panel id="mainPanel"
style="height: 106px; height: auto !important; margin: 0 auto; min-height: 106px; position: relative; width: 960px; z-index: 100;">
<h:form id="loginForm">
<p:panel header="Secure Login"
style="padding-bottom: 40px; width: 380px;">
<p:panelGrid columns="2" styleClass="noBorders">
<h:outputText value="Username:" />
<p:inputText id="username" required="true"
requiredMessage="Username is required." title="Username"
value="#{LoginBean.username}" />
<h:outputText value="Password:" />
<p:password id="password" required="true"
requiredMessage="Password is required"
value="#{LoginBean.password}" />
</p:panelGrid>
<p:commandButton id="loginButton" value="Login"
actionListener="#{LoginBean.login}"
style="margin-top: 5px; float: right;" />
</p:panel>
</h:form>
</p:panel>
</h:body>
</html>
命令按钮上的actionlistener未触发。如果我把它改成h:commandbutton一切都很好。我更喜欢使用primefaces标签,因为它使用主题。如果我使用h:那么我需要抓住CSS。有任何想法吗?另外一件事,如果我在primefaces按钮之前放下一个h:commandbutton,并用它来做初始触发,那么primefaces按钮就可以了:P Go figure!
答案 0 :(得分:0)
因为我修好了,所以要关闭它。也许有人可以在将来使用此信息。我会确保你阅读代码示例Primefaces(或任何框架)并使用他们的确切代码,直到你觉得你已经掌握它。使用JSF 6年后,我仍然没有像BalusC那样想出一切: - )