我有一个奇怪的问题。我正在尝试将多个表单放在模态对话框上,并且基于标志一次只能看到一个表单,并根据用户操作动态地从一个表单切换到另一个表单。问题是通过向表单添加渲染属性会导致 Ajax 事件无法调用支持 bean 中的服务器端方法。
以下表单和支持 bean 是简化的副本,但它演示了问题。基本上,如果从 h:form id="form2" 中删除了 render="#{requestScope.shouldRender}" 并且当您在文本字段中输入时,一切都会按预期工作,并且文本将显示在控制台上。如果将 render="#{requestScope.shouldRender}" 添加到 h:form id="form2" 组件,则根本不会调用该方法。
环境为:Primefaces 3.3 Spring 3.0 Websphere server 7
这是一个带有渲染属性的示例表单(删除以使其正常工作):
<h:body>
<h:form id="form1">
<p:commandButton id="showButton" value="Show" update=":panel1">
<f:setPropertyActionListener value="#{true}"
target="#{requestScope.shouldRender}" />
</p:commandButton>
</h:form>
<p:outputPanel id="panel1">
<h:form id="form2" rendered="#{requestScope.shouldRender}">
<p:inputText id="fn" value="#{testBean.fn}">
<p:ajax event="keyup" listener="#{testBean.valueChangeListener}" />
</p:inputText>
</h:form>
</p:outputPanel>
</h:body>
这是一个小支持豆:
@Component
@Scope("request")
public class TestBean {
private String fn;
public void setFn(String fn) {
this.fn = fn;
}
public String getFn() {
return fn;
}
public void valueChangeListener() {
System.out.println(fn);
}
}