By default the first tab of the primefaces accordion panel is shown open on page load. Is there a way that it can be closed on page load.
Thanks
One approach is to define a widgetVar:
<p:accordionPanel widgetVar="accordion">
...
</p:accordionPanel>
And then:
<body onload="PF('accordion').unselect(0)">
or for older PF versions:
<body onload="accordion.unselect(0)">