从layoutUnit中的另一个表单渲染表单,而不是工作,primefaces

时间:2012-03-30 12:31:10

标签: forms layout jsf-2 primefaces render

我正在使用primefaces 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>

在基本示例之后,我尝试使用primefaces,在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>

但是没有工作......任何想法

0 个答案:

没有答案