PF轮询不会更新为模态对话框

时间:2014-03-17 09:32:25

标签: primefaces modal-dialog updates ajax-polling

我使用primefaces poll来显示将计数器值递增到模态对话框中。但它不起作用。我在主窗体中放置了相同的代码,效果非常好。但是我需要在模态对话框中显示计数器值。

<p:dialog  id="dlgPoll" widgetVar="blockUIWidget1" header="Hitonclick"  modal="true"
   resizable="false" closable="false"  >  
<h:form>
   <h:outputText id="txt_count" value="Extracting is in progress. Please wait...  
   #{mailMB.count}" /> 
   <p:poll listener="#{mailMB.increment}" interval="1" update="txt_count"  > 
   </p:poll>
</h:form>
</:p:dialog>

0 个答案:

没有答案