Я использую простые лица 3.2, Mojarra JSF 2.1.3-FCS
Выполните базовый пример, чтобы доказать, что вы можете визуализировать форму из другой формы
<h:form id="one" rendered="#{test.enable}">
<p:panelGrid id="panelGrid" style="margin-top:10px">
<f:facet name="header">
<p:row>
<p:column colspan="2" style="font-size: 12px !important;
font-weight: bold;">data</p:column>
</p:row>
</f:facet>
</p:panelGrid>
</h:form>
<h:form id="two">
<p:commandButton value="change" update=":one" actionListener="#{test.see}"></p:commandButton>
</h:form>
После базового примераЯ пытаюсь сделать с простыми лицами, используя ту же идею в p: layoutUnit
<p:layout fullPage="true">
<p:layoutUnit position="north" size="100" id="top">
</p:layoutUnit>
<p:layoutUnit position="west" size="200" id="left">
<h:form id="nom">
<h:outputLabel id="nombre2" value="#{home.num}">
</h:outputLabel>
</h:form>
<h:form>
<p:commandButton value="cambia" update=":nom"
actionListener="#{home.ver}"></p:commandButton>
</h:form>
</p:layoutUnit>
<p:layoutUnit position="center">
</p:layoutUnit>
<p:layoutUnit size="50" position="south" id="bottom">
</p:layoutUnit>
</p:layout>
Но не работает ... Любая идея