我目前有一个导航菜单:
...
<p:menuitem id="id1" value="Page 1" action="home.xhtml?faces-redirect=true" actionListener="#{homeBean.someMethod(1)}"/>
<p:menuitem id="id2" value="Page 2" action="other.xhtml?faces-redirect=true" actionListener="#{otherBean.someMethod(1)}"/>
现在我想摆脱这些重定向。所以我尝试了属性 url 而不是 action,但是 actionListener 不再被调用。
在这种情况下如何调用监听器
<p:menuitem id="id1" value="Page 1" url="home.jsf">
... here (or maybe somewhere else) should go the call to my listener ...
</p:menuitem>
强尼