我正在使用jsf 2.0和prime faces 5.5。我有一个
<h:link onClick="#{searchBean.resetLists}" ....
告诉我这个或任何其他设置是否可以在这里使用。我的强制是h:link,我无法将其更改为commandLink或commandButton。
答案 0 :(得分:2)
使用远程命令
<p:remoteCommand name="resetLists" action="#{searchBean.resetLists}"/>
<h:link onclick="resetLists()" ....