在JSF Primefaces中隐藏手风琴面板的第一个选项卡 [英] Hiding the first tab of accordion panel in JSF Primefaces

查看:108
本文介绍了在JSF Primefaces中隐藏手风琴面板的第一个选项卡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

默认情况下,primefaces手风琴面板的第一个选项卡在页面加载时显示为打开.有没有一种方法可以在页面加载时将其关闭.

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.

谢谢

推荐答案

一种方法是定义一个widgetVar:

One approach is to define a widgetVar:

<p:accordionPanel widgetVar="accordion">
    ...
</p:accordionPanel>

然后:

<body onload="PF('accordion').unselect(0)">

或对于较早的PF版本:

or for older PF versions:

<body onload="accordion.unselect(0)">

这篇关于在JSF Primefaces中隐藏手风琴面板的第一个选项卡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆