1

我有一个 PrimeFaces 布局,它由北、东、中、西 4 个单元组成。我有一个要求,我需要像东边那样折叠中心单元,我的意思是它必须折叠到右侧。在这里我不再需要中心单元,但中心单元是强制性的。我正在做的是我已经移除了东部单元并使用中心单元,但根据我的要求,我必须像东部单元一样折叠我的中心单元。

4

1 回答 1

1

这可能会给你一些想法

 <p:layout id="L1" widgetVar="L1" >
        <p:layoutUnit position="north">
        </p:layoutUnit>

        <p:layoutUnit id="center" position="center">
        </p:layoutUnit>

        <p:layoutUnit position="east" id="east">
        </p:layoutUnit>

  </p:layout>

你可以这样做来隐藏L1.layout.hide('east');和显示L1.layout.open('east');

于 2013-02-26T09:55:33.527 回答