i have a JSF inside a JSF page. and the <h:form>
is in the principal 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>
so when i click in the button thats insise the integrated JSF "usergestion.xhtml" it need 2 clicks to get the action .
i already tryed to add
<f:ajax render=":form" />
to fixe the problem but didnt work .
how can i fixe this problem ?