我正在使用带有Prime Faces 5.5的JSF 2.0。我有一个
<h:link onClick="#{searchBean.resetLists}" ....
pl告诉我此处是否可以在此处使用此设置。我的强迫是H:链接,我无法将其更改为CommandLink或CommandButton。
使用远程命令
<p:remoteCommand name="resetLists" action="#{searchBean.resetLists}"/>
<h:link onclick="resetLists()" ....
您可以在PrimeFaces Showcase中阅读有关RemoteCommand的更多信息。