Primefaces是否允许“复合组件”中的轮询标签?
这样的简单示例将在主要的template.xhtml ...
中使用 <h:form id="formm">
<p:poll id="pol" interval="5" update="currDate" process="@this"/>
<h:inputText id="currDate" value="#{backingBean.stringValue}"/>
</h:form>
但是当它包含在“复合组件”中时,它不再更新。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:cc="http://java.sun.com/jsf/composite"
xmlns:p="http://primefaces.org/ui">
<cc:interface/>
<cc:implementation>
<h:form id="formm">
<p:poll id="pol" interval="5" update="currDate" process="@this"/>
<h:inputText id="currDate" value="#{backingBean.stringValue}"/>
</h:form>
</cc:implementation>
</html>
“复合组件”中是否支持POLL标签?