Xhtml页面使用Primefaces组件和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>

我想从进程中排除seconde选项卡帮助我thanx

Ps:我试试这个对我不起作用

How to exclude child component in ajax update of a parent component?