我有h:inputText
有文本和ajax请求如何将它的值发送到bean
类,这些值将在进一步的操作中从bean类开始验证。
查看页面代码
<h:form>
<p:panel id="panel" header="Login Panel" style="margin:0 auto;width:350px;margin-top:15%;">
<p:panelGrid columns="3" id="pgrid1" styleClass="theme" >
<p:outputLabel value="User Name:" />
<p:inputText id="name" value="#{loginBean.name}" required="true" requiredMessage="Name is required">
<f:ajax event="blur" render="label" listener="loginBean.validateName" ></f:ajax>
<!--Here the ajax event working properly but how can i get the inputText value when ajax event is invoked-->
</p:inputText>
<p:message for="name" style="color: red;" />
</p:panelGrid>
<p:commandButton type="Submit" value="Submit" action="#{loginBean.validate}" update="pgrid1" />
</p:panel>
我的Bean类代码是:
public void validateName(AjaxBehaviorEvent e)
{
//Here i need inputText value..how can i handle this task..!!
}
答案 0 :(得分:3)
JSF此时已经设置了#{loginBean.name}
值。只需直接访问它。
public void validateName(AjaxBehaviorEvent e)
{
System.out.println(name); // Look, JSF has already set it.
// ...
}
顺便说一句<f:ajax listener>
中的EL语法错误导致侦听器方法永远不会被调用,但我敢打赌,在准备问题时你只是粗心大意,因为你提到它是“好好工作”。在将来的问题中,请在真实的开发环境中编辑代码并复制实际工作代码,而不是盲目地编辑问题编辑器中的代码。