Extjs4 fieldset 监听收缩和展开方法

时间:2022-02-10 05:06:36
请教有人知道。fieldset收缩和展开方法的监听事件吗?
就是点击fieldset title上的三角收缩和展开按钮,监听此事件!
就是在fieldset.expand()调用之前或者之后 执行些指定事件。

2 个解决方案

#1


listeners:
{
    "collapse":function(p)
    {
        ……
    },
    "expand":function(p)
    {
        ……
    }
}

#2


你用的extjs4 的那个版本?4.0的版本collapse/expand要自己写,但新版本又有了collapse/expand事件

#1


listeners:
{
    "collapse":function(p)
    {
        ……
    },
    "expand":function(p)
    {
        ……
    }
}

#2


你用的extjs4 的那个版本?4.0的版本collapse/expand要自己写,但新版本又有了collapse/expand事件