<p:commandButton ajax="true" value="submit"/>
<f:actionListener binding="#{bean.method1()}" />
<f:actionListener binding="#{bean.method2()}" />
<f:actionListener binding="#{bean.method3()}" />
</p:commandButton>
如果在任何一个侦听器中不满足条件,我想打破actionListener执行链。如果actionListener遇到不满足的条件,我还想为每个actionListener显示一个不同的p:dialog
。
这在JSF 2.0中是否可行?如何实现?
提前致谢。