如何折叠PrimeFaces中心布局为东部布局

时间:2013-02-26 07:47:33

标签: jquery ajax jsf jsf-2 primefaces

我有一个PrimeFaces布局,它包括4个单位,北,东,中,西。 我有一个要求,我需要折叠中心单位,因为东方完成我的意思是它必须折叠到右侧。在这里,我不再需要中心单元,但必须使用中心单元。 我正在做的是移除了东部单位并使用了中心单位,但根据我的要求,我必须像东部单位那样折叠我的中心单位。

1 个答案:

答案 0 :(得分: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');