我在 JSF 页面中有一个 JSF。并且<h:form>
在主要的 JSF 中。
<p:tabView id="tabView">
<p:tab id="tab1" title="Gestion des Utilisateur" titleStyle="titre">
<ui:include src="/admin/usergestion.xhtml" />
</p:tab>
</p:tabView>
因此,当我单击集成 JSF“usergestion.xhtml”的按钮时,需要单击 2 次才能执行操作。
我已经尝试添加
<f:ajax render=":form" />
以解决问题,但没有奏效。
我该如何解决这个问题?