默认情况下如何设置xhtml面板切换?

How to set xhtml panel toggle by default?

我想像这样设置面板的标准切换:

<p:panel id="horizontal" header="Advanced Settings" toggleable="true"  toggleOrientation="horizontal">

</p:panel>

这样当您第一次打开页面时,您会看到这样的面板:like this

只需添加 collapsed 属性:

<p:panel id="horizontal" header="Advanced Settings" toggleable="true"  toggleOrientation="horizontal"
  collapsed="true">

</p:panel>