我有一个显示雅虎财经图表的应用程序,我希望每次在线更改时都会更新图表。下面是我的代码。
<table style="width: 100%">
<tr>
<td>
<b>Nifty 50</b><br/>
<b><h:outputText value="#{equityBean.niftyChange}"/></b><br/>
<b><h:outputText value="#{equityBean.niftyChangePer}"/></b><br/>
<b><h:outputText value="#{equityBean.niftyLTP}"/></b></td>
<td><img src="http://ichart.yahoo.com/t?s=^NSEI"/></td>
<td> </td><td> </td>
<td>
<b>BSE Sensex</b><br/>
<b><h:outputText value="#{equityBean.sensexChange}"/></b><br/>
<b><h:outputText value="#{equityBean.sensexChangePer}"/></b><br/>
<b><h:outputText value="#{equityBean.sensexLTP}"/></b></td>
<td><img src="http://ichart.yahoo.com/t?s=^BSESN"/></td>
<td> </td><td> </td>
<td>
<b>Gold</b><br/>
<b><h:outputText value="#{equityBean.sensexChange}"/></b><br/>
<b><h:outputText value="#{equityBean.sensexChangePer}"/></b><br/>
<b><h:outputText value="#{equityBean.sensexLTP}"/></b></td>
<td><img src="http://ichart.yahoo.com/t?s=GCQ12.CMX"/></td>
</tr>
</table>
我如何用p:ajax做到这一点?或除了调度程序之外还有其他任何方式? 的编辑
<p:poll interval="3"
listener="#{equityBean.sensexChange}" update=":frm" />
frm是表单的id,我在表单中显示了日期,但它没有更新
<h:form id="frm">
<h:outputText value="#{equityBean.tdate}"/>
再次修改:
public String getSensexChange() {
setIndex("^BSESN");
return sensexChange;
}
答案 0 :(得分:0)
你需要的是p:pool组件,它在指定的时间间隔内进行ajax调用。例如:
<p:poll interval="3"
listener="#{counterBean.increment}" update="txt_count" />
您可以在行动here中看到它。