FacesMessage
我的豆子里有一些。我注意到所有被调用的actionListener
都没有显示。
我的form
包含关联的多个字段FacesMessage
。最后,它有一个提交按钮,actionListener
如下所示-
<p:commandButton style="margin-top: 20px;" value="#{msg.submit}" update=":message" actionListener="#{agent.run()}" action="#{agent.showResults()}"/>
在这样的页面p:growl
内声明-common_template.xhtml
<p:growl id="message" showDetail="true" life="3000" />
我得到了FacesMessage
上面调用的所有内容p:commandButton
。
我在我的 Ubuntu 10.04 LTS 机器上使用 PrimeFaces 3.5 和 GlassFish 3.1.2。
客观的
使用actionListener
,我正在做一些 I/O 操作(耗时的操作)。基于这些操作,我只想通知用户成功/失败。
任何替代或修复/破解?