我想从列标题内的 ap:commandButton 触发 actionListener,如下所示:
<h:form id="foos">
<p:messages id="mess" />
<p:columns var="foo" value="#{fooBean.foos}">
<f:facet name="header">#{foo.name}
<p:commandButton icon="ui-icon-trash" actionListener="#{fooBean.test()}" update=":foos" process="@this" />
</f:facet>
<h:outputText value="foobar" />
</p:columns>
</h:form>
无论我尝试什么,actionListener 方法都不会被触发。如果我将 commandButton 移到 facet 之外,它可以工作,所以我假设 facet 组件与 commandButton 一起出现了问题。
没有显示任何消息,因此看起来验证没有失败。
这是在 Primefaces 3.5 下