通过ajax更新似乎工作正常,但我不能得到richfaces轮询工作。确切地说:具有id someoutput2的输出元素在a4j:poll元素之后的1000ms之后不会更新 这是页面的代码:
<h:body>
<h:form id="baseForm">
<h:outputText value="Input field"/>
<br/>
<h:inputText value="#{valueBean.value}">
<f:ajax event="keyup" render="baseForm:someOutput"/>
</h:inputText>
<br/>
<br/>
<h:outputText value="Updated via AJAX:" style="color:red"/>
<br/>
<h:outputText id="someOutput" value="#{valueBean.value}" />
<br/>
<h:outputText value="Updated via Polling:" style="color:green"/>
<br/>
<!-- Polling target -->
<h:outputText id="someOutput2" value="#{valueBean.value}" />
</h:form>
<a4j:region>
<h:form id="pollForm">
<a4j:poll id="poll" interval="1000" timeout="500" enabled="true" reRender="pollForm:poll baseForm:someOutput2"/>
</h:form>
</a4j:region>
</h:body>
这是值bean的代码(这里没什么特别的):
@ManagedBean
@SessionScoped
public class ValueBean {
private String value = "";
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
答案 0 :(得分:2)
您无法直接更新<h:outputText>
等组件,您必须在其父级上调用reRender。在这种情况下,您可能希望将输出包装在<a4j:outputPanel>
中并重新呈现面板。