使用Primefaces组件的Xhtml页面和使用一个表单构建我的页面的jsf
<h:form id="form">
<p:tabView id="tab">
<p:tab title="Thème de la formation" >
<ui:include src="include/tabThemeFormation.xhtml" >
<ui:param name="ficheFormaCtrl" value="#{editFormCatalogueFormationController}"/>
</ui:include>
</p:tab>
<p:tab title="Fiche Formation" >
<ui:include src="include/tabFicheFormation.xhtml" >
<ui:param name="ficheFormaCtrl" value="#editFormCatalogueFormationController}"/>
</ui:include>
</p:tab>
<a:row>
<p:commandButton value="#{bundleCommun.btn_valider}" action="#{editFormCatalogueFormationController.edit()}" icon="fa fa-check-square-o" ajax="false" disabled="#{editFormCatalogueFormationController.disabled}"/>
<p:commandButton value="#{bundleCommun.btn_retour}" immediate="true" action="listFormCatalogueFormation" icon="fa fa-reply" styleClass="GrayButton" ajax="false" />
</a:row>
</h:form>
我想从流程帮助我排除借口选项卡而不是
Ps:我试试这个并不适合我
How to exclude child component in ajax update of a parent component?