p:对话框在最大化时不显示按钮

时间:2017-10-10 13:07:16

标签: primefaces jsf-2

我在xhtml中有一个p:对话框的下一个问题。在这个p:对话框中,我在对话框的底部有3个按钮。代码是:

<p:dialog header="window" minimizable="true" maximizable="true" width="800" height="500" modal="true">
    <p:outputPanel>
        <p:panelGrid columns="1">
            <p:dataGrid columns="1" var="var" layout="grid">
                <p:panel style="text-align: justify;">
                    <f:facet name="header">
                        <h:outputText value="##{fila + 1}"/>
                        <p:outputPanel style="float:right;">
                            <h:outputText value="reter"/>

                            <h:outputText value="fdsfds" >
                                <f:convertDateTime pattern="dd/MM/yyyy HH:mm:ss" />
                            </h:outputText>
                        </p:outputPanel>
                    </f:facet>
                    <p:panelGrid columns="1" >
                        <h:outputText value="gefdgdf" />
                    </p:panelGrid>
                </p:panel>
            </p:dataGrid>
            <p:row>
                <br/>
                <p:column>
                    <h:outputText value="gdfgdf" />
                </p:column>
            </p:row>            
        </p:panelGrid>
    </p:outputPanel>

    <f:facet name="footer">
        <p:outputPanel style="float:right;">
            <p:commandLink >
                <i class="fa fa-comment-o fa-2x"/>
            </p:commandLink>
            <p:commandLink >
                <i class="fa fa-floppy-o fa-2x"/>
            </p:commandLink>
            <p:commandLink >
                <i class="fa fa-pencil fa-2x"/>             
            </p:commandLink>
        </p:outputPanel>
    </f:facet>
</p:dialog>

当我最大化对话框时,按钮(f:facet name="footer")不会显示它。为什么呢?

0 个答案:

没有答案